diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,156 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationKey.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationKey.md index c48dcc111c046..d34f15c01760a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationKey.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationKey.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgApplicationKey --- @@ -32,7 +32,7 @@ Add-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -43,7 +43,6 @@ Add-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -54,7 +53,7 @@ Add-MgApplicationKey -InputObject [-ResponseHeadersVaria [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -65,7 +64,6 @@ Add-MgApplicationKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,7 +85,7 @@ You can use the Update application operation to perform an update instead. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Add a new key credential to an application diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationPassword.md index 0b2e1271f0a3c..98f6b1cdb6b7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgApplicationPassword.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgApplicationPassword --- @@ -28,7 +28,7 @@ Add-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -39,7 +39,6 @@ Add-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -49,7 +48,7 @@ Add-MgApplicationPassword -InputObject [-ResponseHeaders [-AdditionalProperties ] [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -60,7 +59,6 @@ Add-MgApplicationPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,7 +77,7 @@ You can also add passwords while creating the application. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Add a password credential to an application with a six month expiry diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalKey.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalKey.md index be34b2b86b131..8414fa4055f65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalKey.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalKey.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgServicePrincipalKey --- @@ -29,7 +29,7 @@ Add-MgServicePrincipalKey -ServicePrincipalId [-ResponseHeadersVariable [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -40,7 +40,6 @@ Add-MgServicePrincipalKey -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -51,7 +50,7 @@ Add-MgServicePrincipalKey -InputObject [-ResponseHeaders [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -62,7 +61,6 @@ Add-MgServicePrincipalKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -84,7 +82,7 @@ Update servicePrincipal can be used to perform an update instead. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Adding a new key credential to a servicePrincipal diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalPassword.md index 4ae686a95f499..8492e28b01b6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalPassword.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgServicePrincipalPassword --- @@ -24,7 +24,7 @@ Add-MgServicePrincipalPassword -ServicePrincipalId [-ResponseHeadersVar [-AdditionalProperties ] [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -35,7 +35,6 @@ Add-MgServicePrincipalPassword -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -46,7 +45,6 @@ Add-MgServicePrincipalPassword -InputObject [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentity @@ -57,7 +55,6 @@ Add-MgServicePrincipalPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,7 +72,7 @@ Add a strong password or secret to a servicePrincipal object. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalTokenSigningCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalTokenSigningCertificate.md index 5d50ddf02f9fe..7d7a75d9f5f27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Add-MgServicePrincipalTokenSigningCertificate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgServicePrincipalTokenSigningCertificate --- @@ -34,7 +34,7 @@ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-DisplayName ] [-EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -45,7 +45,6 @@ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -55,7 +54,7 @@ Add-MgServicePrincipalTokenSigningCertificate -InputObject ] [-AdditionalProperties ] [-DisplayName ] [-EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -66,7 +65,6 @@ Add-MgServicePrincipalTokenSigningCertificate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -91,7 +89,7 @@ The endDateTime can be up to three years after the certificate is created. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Clear-MgApplicationVerifiedPublisher.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Clear-MgApplicationVerifiedPublisher.md index 983339d66b2c2..69d6d082f59e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Clear-MgApplicationVerifiedPublisher.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Clear-MgApplicationVerifiedPublisher.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgApplicationVerifiedPublisher --- @@ -28,7 +28,6 @@ Clear-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnsetViaIdentity @@ -38,7 +37,6 @@ Clear-MgApplicationVerifiedPublisher -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberGroup.md index 038c83e29acce..3314c3f11a6d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Confirm-MgApplicationMemberGroup --- @@ -31,7 +31,6 @@ Confirm-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariab [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Check @@ -42,7 +41,6 @@ Confirm-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -52,7 +50,7 @@ Confirm-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -63,7 +61,6 @@ Confirm-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberObject.md index a15bcafb663c2..4559bd4e18902 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgApplicationMemberObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Confirm-MgApplicationMemberObject --- @@ -27,7 +27,6 @@ Confirm-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVaria [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Check @@ -38,7 +37,6 @@ Confirm-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -48,7 +46,7 @@ Confirm-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -59,7 +57,6 @@ Confirm-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberGroup.md index 0c713751f19a1..91000f3ad35f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Confirm-MgServicePrincipalMemberGroup --- @@ -31,7 +31,7 @@ Confirm-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Check @@ -42,7 +42,6 @@ Confirm-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -52,7 +51,7 @@ Confirm-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -63,7 +62,6 @@ Confirm-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,9 +81,9 @@ Because Microsoft 365 groups cannot contain other groups, membership in a Micros | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, User.ReadWrite.All, Device.Read.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, AgentIdUser.ReadWrite.All, User.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, AgentIdUser.ReadWrite.IdentityParentedBy, User.Read.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, User.ReadWrite.All, Device.ReadWrite.All, Device.Read.All, Application.ReadWrite.All, Directory.Read.All, AgentIdUser.ReadWrite.All, | +| Application | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberObject.md index 61deacfe09284..bfc8c6f76d8a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Confirm-MgServicePrincipalMemberObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Confirm-MgServicePrincipalMemberObject --- @@ -27,7 +27,7 @@ Confirm-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Check @@ -38,7 +38,6 @@ Confirm-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -48,7 +47,7 @@ Confirm-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -59,7 +58,6 @@ Confirm-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,9 +73,9 @@ Invoke action checkMemberObjects | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, User.ReadWrite.All, Directory.Read.All, User.Read, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, Application.ReadWrite.All, Device.Read.All, AgentIdUser.ReadWrite.IdentityParentedBy, AgentIdUser.ReadWrite.All, User.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read, User.Read.All, User.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, AgentIdUser.ReadWrite.IdentityParentedBy, User.Read.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, User.ReadWrite.All, Device.ReadWrite.All, Device.Read.All, Application.ReadWrite.All, Directory.Read.All, AgentIdUser.ReadWrite.All, | +| Application | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationJobSchemaDirectory.md index 739af5632fe7e..8f2df95209eb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Find-MgApplicationSynchronizationJobSchemaDirectory --- @@ -27,7 +27,7 @@ Find-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationJobId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### DiscoverViaIdentity @@ -37,7 +37,6 @@ Find-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationTemplateSchemaDirectory.md index 77921e985caec..f4482bba93b7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgApplicationSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Find-MgApplicationSynchronizationTemplateSchemaDirectory --- @@ -28,7 +28,6 @@ Find-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DiscoverViaIdentity @@ -38,7 +37,6 @@ Find-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md index 6f65e024508eb..e75cb14be57e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Find-MgServicePrincipalSynchronizationJobSchemaDirectory --- @@ -27,7 +27,7 @@ Find-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionId -ServicePrincipalId -SynchronizationJobId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### DiscoverViaIdentity @@ -37,7 +37,6 @@ Find-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md index f0ac0d3f0cdfc..787e4b8c0b6ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory --- @@ -28,7 +28,6 @@ Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefiniti [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DiscoverViaIdentity @@ -38,7 +37,6 @@ Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplication.md index 68a6b5d74aa18..b41cbb14b20b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplication --- @@ -29,7 +29,7 @@ Get-MgApplication [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplication [-ExpandProperty ] [-Property ] [-Filter < Get-MgApplication -ApplicationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgApplication -ApplicationId [-ExpandProperty ] [-Propert Get-MgApplication -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,9 +64,9 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | +| Application | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Get a list of applications diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicy.md index f49b8bbbb58c0..755729cd51dd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationAppManagementPolicy --- @@ -28,7 +28,7 @@ Get-MgApplicationAppManagementPolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyByRef.md index 628e0519bcbcb..ffd6130a64ecb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationAppManagementPolicyByRef --- @@ -28,7 +28,7 @@ Get-MgApplicationAppManagementPolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyCount.md index cd3ebe9ea7684..68cbcae0de10b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationAppManagementPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationAppManagementPolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationAppManagementPolicyCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationAppManagementPolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByAppId.md index 84817fbc0e0e6..ba8e6af775df7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationByAppId --- @@ -27,7 +27,7 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. Get-MgApplicationByAppId -AppId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationByAppId -AppId [-ExpandProperty ] [-Property Get-MgApplicationByAppId -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | -| Delegated (personal Microsoft account) | Application.Read.All, User.Read, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, User.Read, | +| Application | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## EXAMPLES ### Example 1: Retrieve an application by its appId and only specific properties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationById.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationById.md index 4b8fa2585c3aa..bf31a9a22a20d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationById.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationById.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationById --- @@ -29,7 +29,6 @@ Get-MgApplicationById [-ResponseHeadersVariable ] [-AdditionalProperties [-Ids ] [-Types ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +39,6 @@ Get-MgApplicationById [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByUniqueName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByUniqueName.md index 857befde03af8..0da63044a1af7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByUniqueName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationByUniqueName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationByUniqueName --- @@ -27,7 +27,7 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. Get-MgApplicationByUniqueName -UniqueName [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationByUniqueName -UniqueName [-ExpandProperty ] Get-MgApplicationByUniqueName -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | -| Delegated (personal Microsoft account) | Application.Read.All, User.Read, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, User.Read, | +| Application | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCount.md index 012408f02f497..69155328c9cd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationCount -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | -| Delegated (personal Microsoft account) | Application.Read.All, User.Read, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, User.Read, | +| Application | Application.Read.All, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCreatedOnBehalfOf.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCreatedOnBehalfOf.md index 954431560c13e..68847cec3695f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCreatedOnBehalfOf.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationCreatedOnBehalfOf.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationCreatedOnBehalfOf --- @@ -27,7 +27,7 @@ Read-only. Get-MgApplicationCreatedOnBehalfOf -ApplicationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationCreatedOnBehalfOf -ApplicationId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationDelta.md index 0d9a32437bf2c..5a62836eedc87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationDelta --- @@ -29,7 +29,7 @@ Get-MgApplicationDelta [-ExpandProperty ] [-Filter ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ For more information, see Use delta query to track changes in Microsoft Graph da | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, Application.ReadWrite.All, Application.Read.All, | +| Delegated (work or school account) | Directory.Read.All, Application.Read.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionProperty.md index 8bbb7c4f7d5ae..9cd2472c9d8b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationExtensionProperty --- @@ -28,7 +28,7 @@ Get-MgApplicationExtensionProperty -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplicationExtensionProperty -ApplicationId -ExtensionPropertyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgApplicationExtensionProperty -ApplicationId -ExtensionPropertyId Get-MgApplicationExtensionProperty -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,9 +63,9 @@ Read a directory extension definition represented by an extensionProperty object | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, | | Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, | -| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionPropertyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionPropertyCount.md index 3bbe2ea3791b8..025356f76f767 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionPropertyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationExtensionPropertyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationExtensionPropertyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationExtensionPropertyCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationExtensionPropertyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredential.md index 39f47a7dba8c0..57304cb627759 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationFederatedIdentityCredential --- @@ -28,7 +28,7 @@ Get-MgApplicationFederatedIdentityCredential -ApplicationId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplicationFederatedIdentityCredential -ApplicationId -FederatedIdentityCredentialId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgApplicationFederatedIdentityCredential -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialByName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialByName.md index 9acf350390950..c4caf486c3d47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialByName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialByName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationFederatedIdentityCredentialByName --- @@ -27,7 +27,7 @@ Get-MgApplicationFederatedIdentityCredentialByName -ApplicationId -Name [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -55,7 +55,7 @@ Read the properties and relationships of a federatedIdentityCredential object as | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialCount.md index b1b5d1f14c8b4..31449c852f1c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationFederatedIdentityCredentialCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationFederatedIdentityCredentialCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationFederatedIdentityCredentialCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationFederatedIdentityCredentialCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,7 +54,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicy.md index fb93a6695f5b0..97ed8ef7799a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationHomeRealmDiscoveryPolicy --- @@ -28,7 +28,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -ApplicationId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -ApplicationId -HomeRealmDiscoveryPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicyCount.md index d306ed86c0d35..c5652a66b8dff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationHomeRealmDiscoveryPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationHomeRealmDiscoveryPolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationHomeRealmDiscoveryPolicyCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationLogo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationLogo.md index 5e3188b165cb0..07e8954e481e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationLogo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationLogo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationLogo --- @@ -27,7 +27,7 @@ Not nullable. Get-MgApplicationLogo -ApplicationId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationLogo -ApplicationId -OutFile [-ResponseHeader Get-MgApplicationLogo -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberGroup.md index e328a61fecc25..01aa930afeb8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationMemberGroup --- @@ -31,7 +31,6 @@ Get-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable < [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -42,7 +41,6 @@ Get-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +50,7 @@ Get-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -63,7 +61,6 @@ Get-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberObject.md index 8217e3bcb9ae9..cb5d2457ec79c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationMemberObject --- @@ -28,7 +28,6 @@ Get-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +38,6 @@ Get-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -49,7 +47,7 @@ Get-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -60,7 +58,6 @@ Get-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwner.md index d5074f3734910..68333d640ceb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwner --- @@ -28,7 +28,7 @@ Get-MgApplicationOwner -ApplicationId [-ExpandProperty ] [-Fi [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ Retrieve a list of owners for an application that are directoryObject types. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsAppRoleAssignment.md index b7548a611b596..701fa149b2052 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerAsAppRoleAssignment --- @@ -29,7 +29,6 @@ Get-MgApplicationOwnerAsAppRoleAssignment -ApplicationId [-ExpandProper [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgApplicationOwnerAsAppRoleAssignment -ApplicationId -DirectoryObje [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgApplicationOwnerAsAppRoleAssignment -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsEndpoint.md index b06d07dd6541c..7fff044c9b7ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerAsEndpoint --- @@ -29,7 +29,6 @@ Get-MgApplicationOwnerAsEndpoint -ApplicationId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgApplicationOwnerAsEndpoint -ApplicationId -DirectoryObjectId ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgApplicationOwnerAsEndpoint -InputObject [-ExpandPr [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsServicePrincipal.md index df43091786eca..99b01a5422799 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerAsServicePrincipal --- @@ -29,7 +29,6 @@ Get-MgApplicationOwnerAsServicePrincipal -ApplicationId [-ExpandPropert [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgApplicationOwnerAsServicePrincipal -ApplicationId -DirectoryObjec [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgApplicationOwnerAsServicePrincipal -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsUser.md index e6dc7a94e351c..12b0f41180f6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerAsUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerAsUser --- @@ -29,7 +29,6 @@ Get-MgApplicationOwnerAsUser -ApplicationId [-ExpandProperty [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgApplicationOwnerAsUser -ApplicationId -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgApplicationOwnerAsUser -InputObject [-ExpandProper [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerByRef.md index 5fcec21ba1bca..3df1d2d14b730 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerByRef --- @@ -28,7 +28,7 @@ Get-MgApplicationOwnerByRef -ApplicationId [-Filter ] [-Search [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ Retrieve a list of owners for an application that are directoryObject types. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCount.md index 81d8c99dcdc38..a4caf42a65bf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationOwnerCount -ApplicationId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationOwnerCount -InputObject -ConsistencyLev [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsAppRoleAssignment.md index f2ef8dc79abe7..86bf72be4463f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerCountAsAppRoleAssignment --- @@ -27,7 +27,7 @@ Get-MgApplicationOwnerCountAsAppRoleAssignment -ApplicationId -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationOwnerCountAsAppRoleAssignment -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsEndpoint.md index 56300ff76e529..b9ca7de4e36a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerCountAsEndpoint --- @@ -27,7 +27,7 @@ Get-MgApplicationOwnerCountAsEndpoint -ApplicationId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationOwnerCountAsEndpoint -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsServicePrincipal.md index b2c5e4b48934e..82fea368a8b78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerCountAsServicePrincipal --- @@ -27,7 +27,7 @@ Get-MgApplicationOwnerCountAsServicePrincipal -ApplicationId -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationOwnerCountAsServicePrincipal -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsUser.md index 9541949a61a14..799163f3c7860 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationOwnerCountAsUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationOwnerCountAsUser --- @@ -27,7 +27,7 @@ Get-MgApplicationOwnerCountAsUser -ApplicationId -ConsistencyLevel ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationOwnerCountAsUser -InputObject -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronization.md index 7c1a2e01d5f2e..52f93958ec44b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronization --- @@ -26,7 +26,7 @@ Represents the capability for Microsoft Entra identity synchronization through t Get-MgApplicationSynchronization -ApplicationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationSynchronization -ApplicationId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationAccessToken.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationAccessToken.md index 60cdcf3d96cbf..57c719a85b3cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationAccessToken.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationAccessToken.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationAccessToken --- @@ -29,7 +29,6 @@ Get-MgApplicationSynchronizationAccessToken -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Acquire @@ -40,7 +39,6 @@ Get-MgApplicationSynchronizationAccessToken -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentityExpanded @@ -52,7 +50,6 @@ Get-MgApplicationSynchronizationAccessToken -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentity @@ -63,7 +60,6 @@ Get-MgApplicationSynchronizationAccessToken -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJob.md index 4a569ff2355dd..472ce806c99fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJob --- @@ -28,7 +28,7 @@ Get-MgApplicationSynchronizationJob -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJobI [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgApplicationSynchronizationJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUpload.md index 9116708cdd50b..22b4b24ec34ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobBulkUpload --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationJobBulkUpload -ApplicationId -Synchroni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUploadContent.md index 29f8580b51c2e..44f7e025ba211 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobBulkUploadContent --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId -SynchronizationJobId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId Get-MgApplicationSynchronizationJobBulkUploadContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobCount.md index 8694aba0632c5..66013d8cca866 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationSynchronizationJobCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationSynchronizationJobCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchema.md index f2cf744296814..5e45883314b86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobSchema --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationJobSchema -ApplicationId -Synchronizati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationSynchronizationJobSchema -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectory.md index 26cd5d9cb90e6..42bf71b25640d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectoryCount.md index d15dca8e78ce9..edfdc6dfed9ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationJobSchemaDirectoryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationJobSchemaDirectoryCount --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectoryCount -ApplicationId -SynchronizationJobId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationSecretCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationSecretCount.md index 77d3efd3ffa75..660215037fc8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationSecretCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationSecretCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationSecretCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationSynchronizationSecretCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationSynchronizationSecretCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplate.md index 3946ced306d91..75f671a590049 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationTemplate --- @@ -28,7 +28,7 @@ Get-MgApplicationSynchronizationTemplate -ApplicationId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgApplicationSynchronizationTemplate -ApplicationId -Synchronizatio [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgApplicationSynchronizationTemplate -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,7 +66,7 @@ Preconfigured synchronization settings for a particular application. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateCount.md index 5ca0761803b65..9773dbd75de9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationTemplateCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationSynchronizationTemplateCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgApplicationSynchronizationTemplateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,7 +54,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchema.md index 3249ca3aea5d6..0662ce3543f3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationTemplateSchema --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationTemplateSchema -ApplicationId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationSynchronizationTemplateSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -55,7 +55,7 @@ Default synchronization schema for the jobs based on this template. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectory.md index 47068739acbdf..4e46130969b53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationTemplateSchemaDirectory --- @@ -29,7 +29,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount.md index cfacbbabe8f39..038e009d6cb30 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount --- @@ -27,7 +27,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplate.md index 92c4197726938..a8d559649f111 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTemplate --- @@ -14,6 +14,7 @@ title: Get-MgApplicationTemplate ## SYNOPSIS Retrieve the properties of an applicationTemplate object. +Details about optional risk properties such as riskScore and riskFactors are available with either the Microsoft Entra Suite or Microsoft Entra Internet Access license. > [!NOTE] > To view the beta release of this cmdlet, view [Get-MgBetaApplicationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTemplate?view=graph-powershell-beta) @@ -28,7 +29,7 @@ Get-MgApplicationTemplate [-ExpandProperty ] [-Property ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +38,7 @@ Get-MgApplicationTemplate [-ExpandProperty ] [-Property ] [- Get-MgApplicationTemplate -ApplicationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +47,7 @@ Get-MgApplicationTemplate -ApplicationTemplateId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -57,18 +58,30 @@ This cmdlet has the following aliases, ## DESCRIPTION Retrieve the properties of an applicationTemplate object. +Details about optional risk properties such as riskScore and riskFactors are available with either the Microsoft Entra Suite or Microsoft Entra Internet Access license. ## EXAMPLES -### Example 1: Code snippet +### Example 1: Get application template ```powershell Import-Module Microsoft.Graph.Applications -Get-MgApplicationTemplate +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` -This example shows how to use the Get-MgApplicationTemplate Cmdlet. +This example will get application template + +### Example 2: Get application template with optional properties + +```powershell + +Import-Module Microsoft.Graph.Applications + +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId -Property "id,displayName,riskScore,riskFactors" + +``` +This example will get application template with optional properties ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplateCount.md index da722e271481d..a876c6917922c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTemplateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTemplateCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationTemplateCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicy.md index 115382d3b17e3..12cbfe341298e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenIssuancePolicy --- @@ -28,7 +28,7 @@ Get-MgApplicationTokenIssuancePolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ List the tokenIssuancePolicy objects that are assigned to an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyByRef.md index 84fa605b76a2a..c50ae540c5fb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenIssuancePolicyByRef --- @@ -28,7 +28,7 @@ Get-MgApplicationTokenIssuancePolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ List the tokenIssuancePolicy objects that are assigned to an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyCount.md index 94878a9d8a420..d04c427188257 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenIssuancePolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationTokenIssuancePolicyCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationTokenIssuancePolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicy.md index ff7eca0e6b585..998cb5cf5227a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenLifetimePolicy --- @@ -29,7 +29,7 @@ Get-MgApplicationTokenLifetimePolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyByRef.md index 9ddc91d652ebd..48714ad43cad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenLifetimePolicyByRef --- @@ -29,7 +29,7 @@ Get-MgApplicationTokenLifetimePolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyCount.md index 1231d4ffaacfb..15fe6ba875eb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenLifetimePolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgApplicationTokenLifetimePolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgApplicationTokenLifetimePolicyCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgApplicationTokenLifetimePolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignment.md index 8b8462cdf1892..ca818d3f85b3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupAppRoleAssignment --- @@ -29,7 +29,7 @@ Get-MgGroupAppRoleAssignment -GroupId [-ExpandProperty ] [-Pr [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgGroupAppRoleAssignment -InputObject [-ExpandProper [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignmentCount.md index 2370cbe3d2628..bd9b24791eede 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgGroupAppRoleAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupAppRoleAssignmentCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgGroupAppRoleAssignmentCount -GroupId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgGroupAppRoleAssignmentCount -InputObject -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, AppRoleAssignment.ReadWrite.All, | +| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, Directory.ReadWrite.All, AppRoleAssignment.ReadWrite.All, | +| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipal.md index 34a202bbcd568..866d2fc83c6ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipal --- @@ -29,7 +29,7 @@ Get-MgServicePrincipal [-ExpandProperty ] [-Property ] [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipal [-ExpandProperty ] [-Property ] [-Fil Get-MgServicePrincipal -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgServicePrincipal -ServicePrincipalId [-ExpandProperty ] Get-MgServicePrincipal -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,9 +64,9 @@ This API can be used to get agentIdentityBlueprintPrincipal objects as well by t | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Application | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Get all service principals from the directory diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicy.md index bd37cfd823deb..114029cc697fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppManagementPolicy --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalAppManagementPolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipalAppManagementPolicy -AppManagementPolicyId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgServicePrincipalAppManagementPolicy -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicyCount.md index 5d0d1fdeacb2e..d32425d12edd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppManagementPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppManagementPolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalAppManagementPolicyCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalAppManagementPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedTo.md index 72865ac2b44d4..3f75a9ac13199 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppRoleAssignedTo --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId -ServicePr [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedToCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedToCount.md index f9d7adf6f0a11..38b1d55f55cb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedToCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedToCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppRoleAssignedToCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalAppRoleAssignedToCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgServicePrincipalAppRoleAssignedToCount -ServicePrincipalId [-Filt Get-MgServicePrincipalAppRoleAssignedToCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignment.md index 3c5ac4c5e7998..8594291a33ef8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppRoleAssignment --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId [-ExpandPro [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId -ServicePr [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalAppRoleAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignmentCount.md index 70db5f7da1c3e..991a2e5a519d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalAppRoleAssignmentCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalAppRoleAssignmentCount -ServicePrincipalId -Consi [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalAppRoleAssignmentCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalByAppId.md index a1724f6813069..a3579b5b6059e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalByAppId --- @@ -27,7 +27,7 @@ This API can be used to get agentIdentityBlueprintPrincipal objects as well by t Get-MgServicePrincipalByAppId -AppId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalByAppId -AppId [-ExpandProperty ] [-Pro Get-MgServicePrincipalByAppId -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ This API can be used to get agentIdentityBlueprintPrincipal objects as well by t | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Application | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalById.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalById.md index 1869b7c62ca14..6a617f3c96a7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalById.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalById.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalById --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalById [-ResponseHeadersVariable ] [-AdditionalPrope [-Ids ] [-Types ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +39,6 @@ Get-MgServicePrincipalById [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicy.md index 136cbcabee267..9b6c50017d4d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalClaimMappingPolicy --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ List the claimsMappingPolicy objects that are assigned to a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyByRef.md index 5f23f26970587..899598e26b53b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalClaimMappingPolicyByRef --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ List the claimsMappingPolicy objects that are assigned to a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyCount.md index 4d38b8896c40a..797e859701b82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalClaimMappingPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalClaimMappingPolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalClaimMappingPolicyCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalClaimMappingPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCount.md index 03ba900b00262..ded64d99460bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalCount -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +| Application | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObject.md index 3c8ae27c07fe4..da77034f90722 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalCreatedObject --- @@ -30,7 +30,7 @@ Get-MgServicePrincipalCreatedObject -ServicePrincipalId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgServicePrincipalCreatedObject -DirectoryObjectId -ServicePrincipa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgServicePrincipalCreatedObject -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectAsServicePrincipal.md index 0274816c89c7c..14905d6f7f8f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalCreatedObjectAsServicePrincipal --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCount.md index ba85cf4253e4a..330a32af2442b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalCreatedObjectCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalCreatedObjectCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgServicePrincipalCreatedObjectCount -ServicePrincipalId [-Filter < Get-MgServicePrincipalCreatedObjectCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal.md index 5521f68f7b67c..87dc163a3e2b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal -ServicePrincipalId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassification.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassification.md index e09ef1d5faf03..2dbae8db3e844 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalDelegatedPermissionClassification --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgServicePrincipalDelegatedPermissionClassification [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +49,7 @@ Get-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassificationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassificationCount.md index 49dd8ee0ddf79..83668c6802386 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassificationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelegatedPermissionClassificationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalDelegatedPermissionClassificationCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalDelegatedPermissionClassificationCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalDelegatedPermissionClassificationCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -55,7 +55,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.Read.All, Directory.Read.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, | +| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelta.md index bb7277e643e08..eec85685c4bbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalDelta --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalDelta [-ExpandProperty ] [-Filter ] [-Pr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ For more information, see Use delta query to track changes in Microsoft Graph da | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, Application.ReadWrite.All, Application.Read.All, | +| Delegated (work or school account) | Directory.Read.All, Application.Read.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpoint.md index 7d5e740bed4c8..f7209062f7986 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalEndpoint --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalEndpoint -ServicePrincipalId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId Get-MgServicePrincipalEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpointCount.md index e489e7d04e7e7..bde7b8445f307 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalEndpointCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalEndpointCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalEndpointCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgServicePrincipalEndpointCount -ServicePrincipalId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index bd33026076570..f32161eabdc7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalHomeRealmDiscoveryPolicy --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -45,9 +44,9 @@ List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipa | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 913ca2de895d8..4c9986ad9205f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,9 +44,9 @@ List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipa | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md index 9be40193526ce..31745bc3e34f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberGroup.md index 6389f0c09ae6b..f50568dda4564 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberGroup --- @@ -31,7 +31,6 @@ Get-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeaders [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -42,7 +41,6 @@ Get-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +50,7 @@ Get-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -63,7 +61,6 @@ Get-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,9 +80,9 @@ If you get the DirectoryResultSizeLimitExceeded error code, use the List group t | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, User.Read.All, Group.ReadWrite.All, GroupMember.Read.All, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Application.ReadWrite.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, User.Read.All, Device.ReadWrite.All, Device.Read.All, Directory.Read.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberObject.md index 52f25b21bb8f4..6c0a284538bd5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberObject --- @@ -28,7 +28,6 @@ Get-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeader [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +38,6 @@ Get-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -49,7 +47,7 @@ Get-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -60,7 +58,6 @@ Get-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,9 +74,9 @@ Only users and role-enabled groups can be members of directory roles. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, User.ReadWrite.All, Directory.Read.All, User.Read, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, Application.ReadWrite.All, Device.Read.All, AgentIdUser.ReadWrite.IdentityParentedBy, AgentIdUser.ReadWrite.All, User.Read.All, | +| Delegated (work or school account) | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read, User.Read.All, User.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, AgentIdUser.ReadWrite.IdentityParentedBy, User.Read.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, Directory.ReadWrite.All, User.ReadWrite.All, Device.ReadWrite.All, Device.Read.All, Application.ReadWrite.All, Directory.Read.All, AgentIdUser.ReadWrite.All, | +| Application | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOf.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOf.md index f3e1da0a303ec..9ef89e819bb0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOf.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOf.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOf --- @@ -32,7 +32,6 @@ Get-MgServicePrincipalMemberOf -ServicePrincipalId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -42,7 +41,7 @@ Get-MgServicePrincipalMemberOf -DirectoryObjectId -ServicePrincipalId < [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +51,7 @@ Get-MgServicePrincipalMemberOf -InputObject [-ExpandProp [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsAdministrativeUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsAdministrativeUnit.md index 6c9f78dc592e7..5efbdbaac14a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsAdministrativeUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsAdministrativeUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfAsAdministrativeUnit --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsDirectoryRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsDirectoryRole.md index 4ea8e2002ad64..499b2f52f0bd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsDirectoryRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsDirectoryRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfAsDirectoryRole --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsGroup.md index 567eddeda0026..2d0e3554a4748 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfAsGroup --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalMemberOfAsGroup -ServicePrincipalId [-ExpandPrope [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalMemberOfAsGroup -DirectoryObjectId -ServicePrinci [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalMemberOfAsGroup -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCount.md index 4ed956286e330..39fc23ffa96c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalMemberOfCount -ServicePrincipalId -ConsistencyLev [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalMemberOfCount -InputObject -Consis [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit.md index 000cff90bb4f7..27e36db0ac832 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsDirectoryRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsDirectoryRole.md index b803e306cb36b..8037a357bf543 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsDirectoryRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsDirectoryRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfCountAsDirectoryRole --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalMemberOfCountAsDirectoryRole -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalMemberOfCountAsDirectoryRole -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsGroup.md index 9a638febc6be8..f36ad2e27c387 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberOfCountAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalMemberOfCountAsGroup --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalMemberOfCountAsGroup -ServicePrincipalId -Consist [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalMemberOfCountAsGroup -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrant.md index 4f5ba06bf461c..59c32b41e3960 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOauth2PermissionGrant --- @@ -31,7 +31,6 @@ Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +40,7 @@ Get-MgServicePrincipalOauth2PermissionGrant -OAuth2PermissionGrantId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +50,7 @@ Get-MgServicePrincipalOauth2PermissionGrant -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrantCount.md index eb1361137a7ff..44c808bf64218 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOauth2PermissionGrantCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOauth2PermissionGrantCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalOauth2PermissionGrantCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalOauth2PermissionGrantCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, | +| Delegated (work or school account) | Directory.Read.All, DelegatedPermissionGrant.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, Directory.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, | +| Application | Directory.Read.All, DelegatedPermissionGrant.ReadWrite.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObject.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObject.md index 38cd8be83ea98..54dd1384480d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObject.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObject.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObject --- @@ -31,7 +31,7 @@ Get-MgServicePrincipalOwnedObject -ServicePrincipalId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgServicePrincipalOwnedObject -DirectoryObjectId -ServicePrincipalI [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgServicePrincipalOwnedObject -DirectoryObjectId -ServicePrincipalI Get-MgServicePrincipalOwnedObject -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment.md index 7b79ee8d82f8a..9aac479d4b88f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsApplication.md index 2c65180ba7048..1236fd2bf8fa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectAsApplication --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnedObjectAsApplication -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnedObjectAsApplication -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnedObjectAsApplication -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsEndpoint.md index a43dac43d862a..bbf2d62752071 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectAsEndpoint --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -DirectoryObjectId -Service [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsGroup.md index d285e66d6120a..bb9d1c2d85c6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectAsGroup --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -DirectoryObjectId -ServicePri [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsServicePrincipal.md index 7eea4278381c5..e52314f4cb004 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectAsServicePrincipal --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCount.md index 60900cf0d4be4..13bdb37e29b81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalOwnedObjectCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectCount -ServicePrincipalId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment.md index 372f36031b569..1abe7bc71d668 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment -ServicePrincipalId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsApplication.md index 71cc98c9c472f..56fd86fda4ee6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCountAsApplication --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalOwnedObjectCountAsApplication -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalOwnedObjectCountAsApplication -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsEndpoint.md index 9d2d265c40c20..41b24b1234eeb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCountAsEndpoint --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalOwnedObjectCountAsEndpoint -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalOwnedObjectCountAsEndpoint -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsGroup.md index 6085c3ea5b2da..99bdd377c1a7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCountAsGroup --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalOwnedObjectCountAsGroup -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalOwnedObjectCountAsGroup -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal.md index 9a967a1f0a506..f4b21b5a399c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal -ServicePrincipalId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwner.md index e47c115477154..89e8d0d2db4c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwner --- @@ -31,7 +31,6 @@ Get-MgServicePrincipalOwner -ServicePrincipalId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -49,9 +48,9 @@ Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: List the owners of a service principal diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsAppRoleAssignment.md index 9ea20b0cf1586..d73896a282e9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerAsAppRoleAssignment --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsEndpoint.md index 5715a78be386a..83ff2d431d1e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerAsEndpoint --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnerAsEndpoint -ServicePrincipalId [-ExpandPrope [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnerAsEndpoint -DirectoryObjectId -ServicePrinci [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnerAsEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsServicePrincipal.md index f2e3de6f209b3..fd3913830a03f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerAsServicePrincipal --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsUser.md index cb70839493140..a12e5516e9d41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerAsUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerAsUser --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalOwnerAsUser -ServicePrincipalId [-ExpandProperty [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalOwnerAsUser -DirectoryObjectId -ServicePrincipalI [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalOwnerAsUser -InputObject [-ExpandP [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerByRef.md index 488d757b7b8bd..6b9b25e85dce7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerByRef --- @@ -30,7 +30,7 @@ Get-MgServicePrincipalOwnerByRef -ServicePrincipalId [-Filter ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -48,9 +48,9 @@ Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCount.md index 2eca2fd297ff3..9b58412dfb775 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnerCount -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnerCount -InputObject -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsAppRoleAssignment.md index f73de04ad053b..cdcef784fa0d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerCountAsAppRoleAssignment --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnerCountAsAppRoleAssignment -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnerCountAsAppRoleAssignment -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsEndpoint.md index b575a2f1cafde..f202072cabae1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerCountAsEndpoint --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnerCountAsEndpoint -ServicePrincipalId -Consist [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnerCountAsEndpoint -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsServicePrincipal.md index 6ccd9b0c31c51..436e9f10d1a43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerCountAsServicePrincipal --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnerCountAsServicePrincipal -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnerCountAsServicePrincipal -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsUser.md index 8099299954c45..c800742d6c47d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalOwnerCountAsUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalOwnerCountAsUser --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalOwnerCountAsUser -ServicePrincipalId -Consistency [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalOwnerCountAsUser -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md index 4e1c8ea35497f..6dba6d1eaa525 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalRemoteDesktopSecurityConfiguration --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -57,9 +57,9 @@ Additionally you can view any targetDeviceGroups that have been configured for S | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md new file mode 100644 index 0000000000000..51450ff6743a0 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -0,0 +1,626 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.Applications-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp +--- + +# Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + +## SYNOPSIS + +Read the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp?view=graph-powershell-beta) + +## SYNTAX + +### List (Default) + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId [-ExpandProperty ] [-Property ] [-Filter ] + [-Search ] [-Skip ] [-Sort ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-ExpandProperty ] + [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject [-ExpandProperty ] [-Property ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Read the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId + +``` +This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ApprovedClientAppId + +The unique identifier of approvedClientApp + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IApplicationsIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ServicePrincipalId + +The unique identifier of servicePrincipal + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + +## 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 + [AppId ]: Alternate key of application + [AppManagementPolicyId ]: The unique identifier of appManagementPolicy + [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment + [ApplicationId ]: The unique identifier of application + [ApplicationTemplateId ]: The unique identifier of applicationTemplate + [ApprovedClientAppId ]: The unique identifier of approvedClientApp + [ClaimsMappingPolicyId ]: The unique identifier of claimsMappingPolicy + [DelegatedPermissionClassificationId ]: The unique identifier of delegatedPermissionClassification + [DirectoryDefinitionId ]: The unique identifier of directoryDefinition + [DirectoryObjectId ]: The unique identifier of directoryObject + [EndpointId ]: The unique identifier of endpoint + [ExtensionPropertyId ]: The unique identifier of extensionProperty + [FederatedIdentityCredentialId ]: The unique identifier of federatedIdentityCredential + [GroupId ]: The unique identifier of group + [HomeRealmDiscoveryPolicyId ]: The unique identifier of homeRealmDiscoveryPolicy + [Name ]: Alternate key of federatedIdentityCredential + [OAuth2PermissionGrantId ]: The unique identifier of oAuth2PermissionGrant + [ServicePrincipalId ]: The unique identifier of servicePrincipal + [SynchronizationJobId ]: The unique identifier of synchronizationJob + [SynchronizationTemplateId ]: The unique identifier of synchronizationTemplate + [TargetDeviceGroupId ]: The unique identifier of targetDeviceGroup + [TokenIssuancePolicyId ]: The unique identifier of tokenIssuancePolicy + [TokenLifetimePolicyId ]: The unique identifier of tokenLifetimePolicy + [UniqueName ]: Alternate key of application + [UserId ]: The unique identifier of user + + +## RELATED LINKS + +- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/approvedclientapp-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-approvedclientapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md new file mode 100644 index 0000000000000..dd0ddc73fd46c --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -0,0 +1,399 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.Applications-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientappcount +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount +--- + +# Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount + +## SYNOPSIS + +Get the number of the resource + +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount?view=graph-powershell-beta) + +## SYNTAX + +### Get (Default) + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount + -ServicePrincipalId [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount + -InputObject [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IApplicationsIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ServicePrincipalId + +The unique identifier of servicePrincipal + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## 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 + [AppId ]: Alternate key of application + [AppManagementPolicyId ]: The unique identifier of appManagementPolicy + [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment + [ApplicationId ]: The unique identifier of application + [ApplicationTemplateId ]: The unique identifier of applicationTemplate + [ApprovedClientAppId ]: The unique identifier of approvedClientApp + [ClaimsMappingPolicyId ]: The unique identifier of claimsMappingPolicy + [DelegatedPermissionClassificationId ]: The unique identifier of delegatedPermissionClassification + [DirectoryDefinitionId ]: The unique identifier of directoryDefinition + [DirectoryObjectId ]: The unique identifier of directoryObject + [EndpointId ]: The unique identifier of endpoint + [ExtensionPropertyId ]: The unique identifier of extensionProperty + [FederatedIdentityCredentialId ]: The unique identifier of federatedIdentityCredential + [GroupId ]: The unique identifier of group + [HomeRealmDiscoveryPolicyId ]: The unique identifier of homeRealmDiscoveryPolicy + [Name ]: Alternate key of federatedIdentityCredential + [OAuth2PermissionGrantId ]: The unique identifier of oAuth2PermissionGrant + [ServicePrincipalId ]: The unique identifier of servicePrincipal + [SynchronizationJobId ]: The unique identifier of synchronizationJob + [SynchronizationTemplateId ]: The unique identifier of synchronizationTemplate + [TargetDeviceGroupId ]: The unique identifier of targetDeviceGroup + [TokenIssuancePolicyId ]: The unique identifier of tokenIssuancePolicy + [TokenLifetimePolicyId ]: The unique identifier of tokenLifetimePolicy + [UniqueName ]: Alternate key of application + [UserId ]: The unique identifier of user + + +## RELATED LINKS + +- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientappcount) + + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md index 3998a1c776cef..fea1119cad317 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId -TargetDeviceGroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,9 +65,9 @@ Read the properties and relationships of a targetDeviceGroup object for the remo | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.md index df03ae31a5985..81e1f100059bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronization.md index 1d2654db85a83..c83ec9eacc64b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronization --- @@ -26,7 +26,7 @@ Represents the capability for Microsoft Entra identity synchronization through t Get-MgServicePrincipalSynchronization -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalSynchronization -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationAccessToken.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationAccessToken.md index 4c13550fb25d9..a4fa82bcadd88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationAccessToken.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationAccessToken.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationAccessToken --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Acquire @@ -40,7 +39,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentityExpanded @@ -52,7 +50,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentity @@ -63,7 +60,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJob.md index 25a77864d1b11..1fd8cdbf1a68e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJob --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId -Synchroni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgServicePrincipalSynchronizationJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,7 +66,7 @@ Retrieve the existing synchronization job and its properties. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUpload.md index fd3486c833e22..82097e3b32e98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobBulkUpload --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUploadContent.md index a334120e4f894..7de1ef423a85b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobBulkUploadContent --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobCount.md index 277101f7dff12..5cef51ff567c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalSynchronizationJobCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalSynchronizationJobCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,7 +54,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchema.md index c2c3bbfd18c54..5013d5f47dca1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobSchema --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Retrieve the schema for a given synchronization job or template. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, CustomSecAttributeProvisioning.ReadWrite.All, CustomSecAttributeProvisioning.Read.All, | +| Delegated (work or school account) | Synchronization.Read.All, CustomSecAttributeProvisioning.Read.All, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | CustomSecAttributeProvisioning.Read.All, Synchronization.ReadWrite.All, Synchronization.Read.All, CustomSecAttributeProvisioning.ReadWrite.All, Application.ReadWrite.OwnedBy, | +| Application | CustomSecAttributeProvisioning.Read.All, Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectory.md index f3b5b412c3482..17bb01d1fdc9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionId < -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount.md index 7208c5873e522..0449872dcd22b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount -ServicePrincipalId -SynchronizationJobId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationSecretCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationSecretCount.md index ad4445141f5b8..6d6d6cd30853c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationSecretCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationSecretCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationSecretCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalSynchronizationSecretCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalSynchronizationSecretCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplate.md index 4555e893da6d3..98492e785416f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationTemplate --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -67,7 +66,7 @@ Preconfigured synchronization settings for a particular application. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateCount.md index 1e5edcc8f040c..99ca19177437a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationTemplateCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalSynchronizationTemplateCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalSynchronizationTemplateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,7 +54,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchema.md index 1449f56d18c46..4d3cdc7e2fafe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationTemplateSchema --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -55,7 +55,7 @@ Default synchronization schema for the jobs based on this template. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, Synchronization.Read.All, | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md index cd433ff81d2d6..630f234a68302 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefinitio -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.md index 27ce49054c047..9556611dd569b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount -ServicePrinci -SynchronizationTemplateId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicy.md index 8c654dabf1410..30a496b06eca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenIssuancePolicy --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalTokenIssuancePolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyByRef.md index 0b2adbcef5474..26fd2262ac0fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenIssuancePolicyByRef --- @@ -28,7 +28,7 @@ Get-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId [-Fi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyCount.md index ed9db3247b15c..845f899d2b6ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenIssuancePolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenIssuancePolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalTokenIssuancePolicyCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalTokenIssuancePolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicy.md index ecc1a4edfba6a..cf0ff1080a57c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenLifetimePolicy --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalTokenLifetimePolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyByRef.md index 756ba8a587550..3f1d239845a81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenLifetimePolicyByRef --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId [-Fi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -46,9 +46,9 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyCount.md index 5a65a12799948..14dc5c7c55fc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTokenLifetimePolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTokenLifetimePolicyCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgServicePrincipalTokenLifetimePolicyCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgServicePrincipalTokenLifetimePolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,9 +52,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOf.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOf.md index 03e2ab3459291..e7e9b7ece5c8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOf.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOf --- @@ -29,7 +29,6 @@ Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId [-ExpandPr [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgServicePrincipalTransitiveMemberOf -DirectoryObjectId -ServicePri [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgServicePrincipalTransitiveMemberOf -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.md index 791e1ae8c233d..d09d5318fae17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole.md index 48e4eda7bc412..7dbf4341ec2f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsGroup.md index dc60a04e0510b..d6f6633b00bb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfAsGroup --- @@ -29,7 +29,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCount.md index 7dd182b19489e..cf7a5c068a081 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfCount --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalTransitiveMemberOfCount -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalTransitiveMemberOfCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.md index 87cac90475940..11863b6ff0a43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit -ServicePrinci -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.md index e25da47441ffb..4c7430a1e7f9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsGroup.md index 3008528a8c316..2089b1084d2cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalTransitiveMemberOfCountAsGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgServicePrincipalTransitiveMemberOfCountAsGroup --- @@ -27,7 +27,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsGroup -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsGroup -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignment.md index 97679c660cb10..b26440cd6d399 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserAppRoleAssignment --- @@ -29,7 +29,7 @@ Get-MgUserAppRoleAssignment -UserId [-ExpandProperty ] [-Prop [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgUserAppRoleAssignment -InputObject [-ExpandPropert [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignmentCount.md index 91dea9b6b77f3..74a4e5c244ef4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgUserAppRoleAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserAppRoleAssignmentCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgUserAppRoleAssignmentCount -UserId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgUserAppRoleAssignmentCount -InputObject -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationJobSchemaOperator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationJobSchemaOperator.md index 6ca12c24646d8..72b3475fcb09b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationJobSchemaOperator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationJobSchemaOperator.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFilterApplicationSynchronizationJobSchemaOperator --- @@ -28,7 +28,7 @@ Invoke-MgFilterApplicationSynchronizationJobSchemaOperator -ApplicationId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFilterApplicationSynchronizationJobSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator.md index c09b448999b38..67cfa98daff31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator --- @@ -28,7 +28,7 @@ Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator -ApplicationId < [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md index 934103cded1fa..4e1c760fd5ade 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator --- @@ -28,7 +28,7 @@ Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -ServicePrincipa [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator.md index b699afc4c3ed3..d00321237044f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator --- @@ -28,7 +28,7 @@ Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator -ServicePri [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationJobSchema.md index 44e9d09061ff7..0c1b7d6842918 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFunctionApplicationSynchronizationJobSchema --- @@ -28,7 +28,7 @@ Invoke-MgFunctionApplicationSynchronizationJobSchema -ApplicationId [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFunctionApplicationSynchronizationJobSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationTemplateSchema.md index cb21021c2290c..f08c24f451c37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionApplicationSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFunctionApplicationSynchronizationTemplateSchema --- @@ -28,7 +28,7 @@ Invoke-MgFunctionApplicationSynchronizationTemplateSchema -ApplicationId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFunctionApplicationSynchronizationTemplateSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md index ef41cc415e019..ab766259205f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFunctionServicePrincipalSynchronizationJobSchema --- @@ -28,7 +28,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -ServicePrincipalId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema.md index b72dcce00e3ac..55ecc0121745d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema --- @@ -28,7 +28,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema -ServicePrincipal [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +39,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgInstantiateApplicationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgInstantiateApplicationTemplate.md index 530d8666b3b47..46abba8bb1114 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgInstantiateApplicationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgInstantiateApplicationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgInstantiateApplicationTemplate --- @@ -29,7 +29,6 @@ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId [-ServiceManagementReference ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Instantiate @@ -40,7 +39,6 @@ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InstantiateViaIdentityExpanded @@ -51,7 +49,6 @@ Invoke-MgInstantiateApplicationTemplate -InputObject [-ServiceManagementReference ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InstantiateViaIdentity @@ -62,7 +59,6 @@ Invoke-MgInstantiateApplicationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,7 +77,7 @@ For non-gallery apps, use an application template with one of the following IDs | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationJobSchemaExpression.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationJobSchemaExpression.md index 48498833b5d55..b06330989fdee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationJobSchemaExpression.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationJobSchemaExpression.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgParseApplicationSynchronizationJobSchemaExpression --- @@ -31,7 +31,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +42,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -55,7 +53,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -66,7 +63,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression.md index 2d482042eabf7..cbdbd4694d054 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression --- @@ -31,7 +31,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression -ApplicationId [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +42,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +54,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +65,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression.md index 9829dae902e7e..09112c275243c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression --- @@ -31,7 +31,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression -ServicePrincip [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +42,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression -ServicePrincip [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +54,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +65,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression.md index 267f047f15d5b..af0aa28ae202c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression --- @@ -31,7 +31,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression -ServicePr [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +42,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression -ServicePr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +54,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +65,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Microsoft.Graph.Applications.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Microsoft.Graph.Applications.md index 61cf7c18cdcb8..8c82d58c571e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Microsoft.Graph.Applications.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Microsoft.Graph.Applications.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.Applications -Module Guid: 57fb2f20-12fd-4304-8330-dcc0ceff943b +Module Guid: beba29e5-10af-43b6-95d2-271991c6dde0 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.applications/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -347,6 +347,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgServicePrincipalRemoteDesktopSecurityConfiguration](Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md) +### [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md) + +### [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md) + +### [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount](Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md) + ### [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md) ### [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md) @@ -501,6 +507,8 @@ Microsoft Graph PowerShell Cmdlets ### [New-MgServicePrincipalOwnerByRef](New-MgServicePrincipalOwnerByRef.md) +### [New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md) + ### [New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md) ### [New-MgServicePrincipalSynchronizationJob](New-MgServicePrincipalSynchronizationJob.md) @@ -589,6 +597,8 @@ Microsoft Graph PowerShell Cmdlets ### [Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration](Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md) +### [Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md) + ### [Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md) ### [Remove-MgServicePrincipalSynchronization](Remove-MgServicePrincipalSynchronization.md) @@ -697,6 +707,8 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgServicePrincipalRemoteDesktopSecurityConfiguration](Update-MgServicePrincipalRemoteDesktopSecurityConfiguration.md) +### [Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md) + ### [Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md) ### [Update-MgServicePrincipalSynchronizationJob](Update-MgServicePrincipalSynchronizationJob.md) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplication.md index 922ba01f5c68e..a6402f0feb926 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplication --- @@ -56,7 +56,7 @@ New-MgApplication [-ResponseHeadersVariable ] [-AddIns ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -65,7 +65,7 @@ New-MgApplication [-ResponseHeadersVariable ] [-AddIns [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -84,7 +84,7 @@ This API can also create an agentIdentityBlueprint object when the @odata.type p | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprint.Create, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Create, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.Create, Application.ReadWrite.All, | ## EXAMPLES ### Example 1: Create a new application @@ -1678,14 +1678,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -1693,6 +1701,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLES : The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. @@ -1807,14 +1828,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -1822,6 +1851,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppRoles ]: The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationAppManagementPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationAppManagementPolicyByRef.md index ea19932b703bd..15f9e5a107e0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationAppManagementPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationAppManagementPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationAppManagementPolicyByRef --- @@ -30,7 +30,6 @@ New-MgApplicationAppManagementPolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,6 @@ New-MgApplicationAppManagementPolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +49,6 @@ New-MgApplicationAppManagementPolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +59,6 @@ New-MgApplicationAppManagementPolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -80,9 +76,9 @@ Only one policy object can be assigned to an application or service principal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Policy.ReadWrite.ApplicationConfiguration, Policy.Read.ApplicationConfiguration, | +| Delegated (work or school account) | Application.Read.All, Policy.Read.ApplicationConfiguration, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Policy.ReadWrite.ApplicationConfiguration, Policy.Read.ApplicationConfiguration, | +| Application | Application.Read.All, Policy.Read.ApplicationConfiguration, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationExtensionProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationExtensionProperty.md index caf722451c144..2193ff23c7f14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationExtensionProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationExtensionProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationExtensionProperty --- @@ -29,7 +29,6 @@ New-MgApplicationExtensionProperty -ApplicationId [-ResponseHeadersVari [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,7 @@ New-MgApplicationExtensionProperty -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +50,7 @@ New-MgApplicationExtensionProperty -InputObject [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +60,7 @@ New-MgApplicationExtensionProperty -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,7 +78,7 @@ Create a new directory extension definition, represented by an extensionProperty | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationFederatedIdentityCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationFederatedIdentityCredential.md index 79c67752ad2d8..6403a384294b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationFederatedIdentityCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationFederatedIdentityCredential --- @@ -30,7 +30,7 @@ New-MgApplicationFederatedIdentityCredential -ApplicationId [-Description ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgApplicationFederatedIdentityCredential -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +51,7 @@ New-MgApplicationFederatedIdentityCredential -InputObject ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +61,7 @@ New-MgApplicationFederatedIdentityCredential -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationOwnerByRef.md index fabb6ffda00da..904bead29d780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationOwnerByRef --- @@ -29,7 +29,6 @@ New-MgApplicationOwnerByRef -ApplicationId -OdataId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgApplicationOwnerByRef -ApplicationId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgApplicationOwnerByRef -InputObject -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +57,6 @@ New-MgApplicationOwnerByRef -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,9 +73,9 @@ Application owners can be individual users, the associated service principal, or | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Add an owner to an application diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJob.md index a5fef1a995246..c23e96bf4a74b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationSynchronizationJob --- @@ -30,7 +30,7 @@ New-MgApplicationSynchronizationJob -ApplicationId [-ResponseHeadersVar [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgApplicationSynchronizationJob -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +53,7 @@ New-MgApplicationSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgApplicationSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobOnDemand.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobOnDemand.md index 6e72013d7c0b5..b29912fa562eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobOnDemand.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobOnDemand.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationSynchronizationJobOnDemand --- @@ -29,7 +29,7 @@ New-MgApplicationSynchronizationJobOnDemand -ApplicationId -Synchroniza [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Provision @@ -40,7 +40,6 @@ New-MgApplicationSynchronizationJobOnDemand -ApplicationId -Synchroniza [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ProvisionViaIdentityExpanded @@ -51,7 +50,7 @@ New-MgApplicationSynchronizationJobOnDemand -InputObject [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### ProvisionViaIdentity @@ -62,7 +61,6 @@ New-MgApplicationSynchronizationJobOnDemand -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobSchemaDirectory.md index b547845482d40..3f470f9d05b90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +51,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +61,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplate.md index e17898f0fba8a..2da5e5a83f927 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationSynchronizationTemplate --- @@ -30,7 +30,6 @@ New-MgApplicationSynchronizationTemplate -ApplicationId [-ResponseHeade [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -43,7 +42,6 @@ New-MgApplicationSynchronizationTemplate -InputObject [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -53,7 +51,7 @@ New-MgApplicationSynchronizationTemplate -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +61,7 @@ New-MgApplicationSynchronizationTemplate -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplateSchemaDirectory.md index 805a41d04a7a1..914053a14e0e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationSynchronizationTemplateSchemaDirectory --- @@ -29,7 +29,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +51,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +61,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenIssuancePolicyByRef.md index d9c4aa95c863c..3a939385bc653 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationTokenIssuancePolicyByRef --- @@ -28,7 +28,6 @@ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgApplicationTokenIssuancePolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +57,6 @@ New-MgApplicationTokenIssuancePolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,9 +72,9 @@ Assign a tokenIssuancePolicy to an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenLifetimePolicyByRef.md index 0353d7a14cb8c..eba8ddc9ff477 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgApplicationTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgApplicationTokenLifetimePolicyByRef --- @@ -29,7 +29,6 @@ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgApplicationTokenLifetimePolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgApplicationTokenLifetimePolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,9 +74,9 @@ You can have multiple tokenLifetimePolicy policies in a tenant but can assign on | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgGroupAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgGroupAppRoleAssignment.md index 2ad7f2247bbcc..9ea498c1fbad9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgGroupAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgGroupAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupAppRoleAssignment --- @@ -32,7 +32,7 @@ New-MgGroupAppRoleAssignment -GroupId [-ResponseHeadersVariable ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +42,6 @@ New-MgGroupAppRoleAssignment -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +54,6 @@ New-MgGroupAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +63,7 @@ New-MgGroupAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipal.md index 9c88a8ecbe5a3..0ae7d18ded649 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipal --- @@ -59,7 +59,6 @@ New-MgServicePrincipal [-ResponseHeadersVariable ] [-AccountEnabled] [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -69,7 +68,6 @@ New-MgServicePrincipal -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -86,9 +84,9 @@ This API can also create an agentIdentityBlueprintPrincipal object from an agent | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, AgentIdentityBlueprintPrincipal.Create, AgentIdentity.Create.All, | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentity.Create.All, AgentIdentityBlueprintPrincipal.Create, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Create, AgentIdentity.CreateAsManager, AgentIdentity.Create.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentity.Create.All, AgentIdentity.CreateAsManager, AgentIdentityBlueprintPrincipal.Create, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Create a new service principal object @@ -1709,14 +1707,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -1724,6 +1730,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLEASSIGNEDTO : App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. @@ -1854,14 +1873,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -1869,6 +1896,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppOwnerOrganizationId ]: Contains the tenant ID where the application is registered. This is applicable only to service principals backed by applications. Supports $filter (eq, ne, NOT, ge, le). diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignedTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignedTo.md index 425810de03df4..73a7d618992bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignedTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalAppRoleAssignedTo --- @@ -33,7 +33,6 @@ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +42,7 @@ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +55,6 @@ New-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +64,7 @@ New-MgServicePrincipalAppRoleAssignedTo -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,9 +83,9 @@ To grant an app role assignment, you need three identifiers: | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | +| Delegated (work or school account) | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | +| Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignment.md index 77c518a59cd41..065b36d2a185e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalAppRoleAssignment --- @@ -33,7 +33,6 @@ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +42,7 @@ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +55,6 @@ New-MgServicePrincipalAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +64,7 @@ New-MgServicePrincipalAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,9 +83,9 @@ To grant an app role assignment to a client service principal, you need three id | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | +| Delegated (work or school account) | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | +| Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalClaimMappingPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalClaimMappingPolicyByRef.md index d022984b7aaf6..5757b71d9ba87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalClaimMappingPolicyByRef --- @@ -28,7 +28,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId -Odat [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,9 +73,9 @@ Assign a claimsMappingPolicy to a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalDelegatedPermissionClassification.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalDelegatedPermissionClassification.md index 19ef0987f58f7..94c09a510985e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalDelegatedPermissionClassification --- @@ -28,7 +28,7 @@ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,6 @@ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +49,7 @@ New-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +60,6 @@ New-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalEndpoint.md index 8291bfcd1891b..05bcf1c2792b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalEndpoint --- @@ -28,7 +28,7 @@ New-MgServicePrincipalEndpoint -ServicePrincipalId [-ResponseHeadersVar [-Id ] [-ProviderId ] [-ProviderName ] [-ProviderResourceId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,6 @@ New-MgServicePrincipalEndpoint -ServicePrincipalId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +49,6 @@ New-MgServicePrincipalEndpoint -InputObject [-ProviderResourceId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +58,7 @@ New-MgServicePrincipalEndpoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 1e1dd21bac12d..caea4bb96250c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef --- @@ -28,7 +28,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,9 +73,9 @@ Assign a homeRealmDiscoveryPolicy to a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalOwnerByRef.md index 40ae591d2b394..387dacead85aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalOwnerByRef --- @@ -29,7 +29,6 @@ New-MgServicePrincipalOwnerByRef -ServicePrincipalId -OdataId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgServicePrincipalOwnerByRef -ServicePrincipalId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgServicePrincipalOwnerByRef -InputObject -OdataId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgServicePrincipalOwnerByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,9 +74,9 @@ Service principal owners can be users, the service principal itself, or other se | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Add an owner for a service principal diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md new file mode 100644 index 0000000000000..7df87e3f4516a --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -0,0 +1,575 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.Applications-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp +--- + +# New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + +## SYNOPSIS + +Create a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. +You can configure a maximum of 20 approved client apps. + +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp?view=graph-powershell-beta) + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentityExpanded + +``` +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentity + +``` +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. +You can configure a maximum of 20 approved client apps. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +$params = @{ + "@odata.type" = "#microsoft.graph.approvedClientApp" + displayName = "Client App 1" +} + +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -BodyParameter $params + +``` +This example shows how to use the New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +approvedClientApp +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DisplayName + +The display name of the approved client application. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IApplicationsIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ServicePrincipalId + +The unique identifier of servicePrincipal + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + +## 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. + +BODYPARAMETER ``: approvedClientApp + [(Any) ]: This indicates any property can be added to this object. + [Id ]: The unique identifier for an entity. +Read-only. + [DisplayName ]: The display name of the approved client application. + +INPUTOBJECT ``: Identity Parameter + [AppId ]: Alternate key of application + [AppManagementPolicyId ]: The unique identifier of appManagementPolicy + [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment + [ApplicationId ]: The unique identifier of application + [ApplicationTemplateId ]: The unique identifier of applicationTemplate + [ApprovedClientAppId ]: The unique identifier of approvedClientApp + [ClaimsMappingPolicyId ]: The unique identifier of claimsMappingPolicy + [DelegatedPermissionClassificationId ]: The unique identifier of delegatedPermissionClassification + [DirectoryDefinitionId ]: The unique identifier of directoryDefinition + [DirectoryObjectId ]: The unique identifier of directoryObject + [EndpointId ]: The unique identifier of endpoint + [ExtensionPropertyId ]: The unique identifier of extensionProperty + [FederatedIdentityCredentialId ]: The unique identifier of federatedIdentityCredential + [GroupId ]: The unique identifier of group + [HomeRealmDiscoveryPolicyId ]: The unique identifier of homeRealmDiscoveryPolicy + [Name ]: Alternate key of federatedIdentityCredential + [OAuth2PermissionGrantId ]: The unique identifier of oAuth2PermissionGrant + [ServicePrincipalId ]: The unique identifier of servicePrincipal + [SynchronizationJobId ]: The unique identifier of synchronizationJob + [SynchronizationTemplateId ]: The unique identifier of synchronizationTemplate + [TargetDeviceGroupId ]: The unique identifier of targetDeviceGroup + [TokenIssuancePolicyId ]: The unique identifier of tokenIssuancePolicy + [TokenLifetimePolicyId ]: The unique identifier of tokenLifetimePolicy + [UniqueName ]: Alternate key of application + [UserId ]: The unique identifier of user + + +## RELATED LINKS + +- [New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-approvedclientapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md index 38ca3c0d72ee9..9ba619a67b998 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup --- @@ -29,7 +29,7 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +50,7 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +61,6 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,9 +77,9 @@ You can configure a maximum of 10 target device groups for the remoteDesktopSecu | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJob.md index 76d8bccefa919..de1551efb2c84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalSynchronizationJob --- @@ -32,7 +32,7 @@ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +42,7 @@ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +55,7 @@ New-MgServicePrincipalSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +65,7 @@ New-MgServicePrincipalSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobOnDemand.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobOnDemand.md index 6f10b10ea8878..69fc51f03d2b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobOnDemand.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobOnDemand.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalSynchronizationJobOnDemand --- @@ -30,7 +30,7 @@ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Provision @@ -42,7 +42,6 @@ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ProvisionViaIdentityExpanded @@ -53,7 +52,7 @@ New-MgServicePrincipalSynchronizationJobOnDemand -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### ProvisionViaIdentity @@ -64,7 +63,6 @@ New-MgServicePrincipalSynchronizationJobOnDemand -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobSchemaDirectory.md index dd404ded43a0f..95f03da2c9ddf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +51,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +61,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplate.md index 01bd7e433d0b6..8d65b52fd65d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalSynchronizationTemplate --- @@ -30,7 +30,6 @@ New-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,7 @@ New-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +52,6 @@ New-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +61,7 @@ New-MgServicePrincipalSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md index d4a847bb7a983..9e626a72ee99f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalSynchronizationTemplateSchemaDirectory --- @@ -29,7 +29,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +51,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +61,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenIssuancePolicyByRef.md index 3e5288c6e7ff6..10e16031114fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalTokenIssuancePolicyByRef --- @@ -28,7 +28,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId -Oda [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenLifetimePolicyByRef.md index 554c0de423c1e..f7b4ea5cd1df7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgServicePrincipalTokenLifetimePolicyByRef --- @@ -29,7 +29,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId -Oda [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +49,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +59,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,9 +75,9 @@ You can have multiple tokenLifetimePolicy policies in a tenant but can assign on | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgUserAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgUserAppRoleAssignment.md index 8317ce5b8efe9..e3715205e8c2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgUserAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgUserAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserAppRoleAssignment --- @@ -29,7 +29,7 @@ New-MgUserAppRoleAssignment -UserId [-ResponseHeadersVariable ] [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,6 @@ New-MgUserAppRoleAssignment -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +50,7 @@ New-MgUserAppRoleAssignment -InputObject [-ResponseHeade [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +60,7 @@ New-MgUserAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplication.md index 597ace313d2e4..09efb3cea3cef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplication --- @@ -30,7 +30,6 @@ Remove-MgApplication -ApplicationId [-IfMatch ] [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgApplication -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -61,7 +59,7 @@ This API can also delete an agentIdentityBlueprint object by its ID. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprint.DeleteRestore.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.DeleteRestore.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.DeleteRestore.All, Application.ReadWrite.All, | ## EXAMPLES ### Example 1: Delete an application diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef.md index ea0fe2807c7c5..093f4868f0330 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef --- @@ -29,7 +29,6 @@ Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -AppManagementPo [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md index 00b8d3c2ecbf8..2a6b774ae5b7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationAppManagementPolicyByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationAppManagementPolicyByRef --- @@ -29,7 +29,6 @@ Remove-MgApplicationAppManagementPolicyByRef -AppManagementPolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgApplicationAppManagementPolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByAppId.md index 2279b2bc703ef..acf976fae15c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationByAppId --- @@ -30,7 +30,6 @@ Remove-MgApplicationByAppId -AppId [-IfMatch ] [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgApplicationByAppId -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByUniqueName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByUniqueName.md index 7138896dea3fd..1b6d0ac08ae26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByUniqueName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationByUniqueName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationByUniqueName --- @@ -30,7 +30,6 @@ Remove-MgApplicationByUniqueName -UniqueName [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgApplicationByUniqueName -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationExtensionProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationExtensionProperty.md index 31533814077ee..fd44321cf1745 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationExtensionProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationExtensionProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationExtensionProperty --- @@ -28,7 +28,6 @@ Remove-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationExtensionProperty -InputObject [-IfM [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,7 +55,7 @@ You can delete only directory extensions that aren't synced from on-premises act | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredential.md index ba58e3ef35f7d..a20e19946e342 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationFederatedIdentityCredential --- @@ -28,7 +28,6 @@ Remove-MgApplicationFederatedIdentityCredential -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationFederatedIdentityCredential -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredentialByName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredentialByName.md index 7b8a28a405a6f..8b92d00ad2dbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredentialByName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationFederatedIdentityCredentialByName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationFederatedIdentityCredentialByName --- @@ -27,7 +27,6 @@ Remove-MgApplicationFederatedIdentityCredentialByName -ApplicationId -N [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationKey.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationKey.md index 9d0f376c06b5f..4e1561371438b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationKey.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationKey.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationKey --- @@ -29,7 +29,6 @@ Remove-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -40,7 +39,6 @@ Remove-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -51,7 +49,6 @@ Remove-MgApplicationKey -InputObject [-ResponseHeadersVa [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -62,7 +59,6 @@ Remove-MgApplicationKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,7 +77,7 @@ This method along with addKey can be used to automate rolling its expiring keys. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationLogo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationLogo.md index 98e6754f20f3c..b1a19c74f07a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationLogo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationLogo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationLogo --- @@ -28,7 +28,6 @@ Remove-MgApplicationLogo -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationLogo -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md index 3387078744811..34626afd41f4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationOwnerByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationOwnerByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationOwnerByRef -ApplicationId -DirectoryObjectId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationOwnerByRef -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,7 +55,7 @@ As a recommended best practice, apps should have at least two owners. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerDirectoryObjectByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerDirectoryObjectByRef.md index 770cd8919b2fa..8614965a34f78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerDirectoryObjectByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerDirectoryObjectByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationOwnerDirectoryObjectByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationOwnerDirectoryObjectByRef -ApplicationId -Directory [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationOwnerDirectoryObjectByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,7 +55,7 @@ As a recommended best practice, apps should have at least two owners. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationPassword.md index cdd28fedce457..31f391c315ffb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationPassword.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationPassword --- @@ -27,7 +27,6 @@ Remove-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable < [-AdditionalProperties ] [-KeyId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -38,7 +37,6 @@ Remove-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -49,7 +47,6 @@ Remove-MgApplicationPassword -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -60,7 +57,6 @@ Remove-MgApplicationPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,7 +74,7 @@ Remove a password from an application. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronization.md index e37739882244e..270730b261a7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronization --- @@ -27,7 +27,6 @@ Remove-MgApplicationSynchronization -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgApplicationSynchronization -InputObject [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJob.md index 1ca33ae3c6010..a1d19d4738771 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationJob --- @@ -27,7 +27,6 @@ Remove-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgApplicationSynchronizationJob -InputObject [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUpload.md index 86cef36ebc8a1..502a08d8582fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationJobBulkUpload --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationJobBulkUpload -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUploadContent.md index 7e4e790bf28bd..725daead6be1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationJobBulkUploadContent --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationJobBulkUploadContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchema.md index 4bec46245b579..492469be69686 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationJobSchema --- @@ -27,7 +27,6 @@ Remove-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgApplicationSynchronizationJobSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchemaDirectory.md index fe8fa5b53139f..21950ac846488 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationJobSchemaDirectory --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplate.md index 91884af455bd3..cc6a83849064b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationTemplate --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationTemplate -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchema.md index 71ec4a260f277..265de0d5cd131 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationTemplateSchema --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationTemplateSchema -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationTemplateSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchemaDirectory.md index 8527ceba4b46b..805d93e0349d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationSynchronizationTemplateSchemaDirectory --- @@ -28,7 +28,6 @@ Remove-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md index 95f1a7b1ad14c..6a9569cd5d858 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenIssuancePolicyByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationTokenIssuancePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationTokenIssuancePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,9 +52,9 @@ Remove a tokenIssuancePolicy from an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef.md index da8f15d555b70..9e2b86cfc10fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -ApplicationId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,9 +52,9 @@ Remove a tokenIssuancePolicy from an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md index 433941531515f..9c60beb82eaa7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenLifetimePolicyByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationTokenLifetimePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationTokenLifetimePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,9 +52,9 @@ Remove a tokenLifetimePolicy from an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef.md index eeea865974442..55dcd1ede2a74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -ApplicationId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,9 +52,9 @@ Remove a tokenLifetimePolicy from an application. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgGroupAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgGroupAppRoleAssignment.md index b2801f31e612a..b8543009823e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgGroupAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgGroupAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupAppRoleAssignment --- @@ -27,7 +27,6 @@ Remove-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupAppRoleAssignment -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipal.md index 64894a1d4a28e..720436ffdadc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipal --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipal -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipal -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ This API can also delete an agentIdentityBlueprintPrincipal object by its ID. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, AgentIdentity.DeleteRestore.All, | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentity.DeleteRestore.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, AgentIdentity.DeleteRestore.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentity.DeleteRestore.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignedTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignedTo.md index dd3c0c3062154..1cb8b6432ab2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalAppRoleAssignedTo --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignment.md index f81e953cae2b9..db85cffd180c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalAppRoleAssignment --- @@ -30,7 +30,6 @@ Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgServicePrincipalAppRoleAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalByAppId.md index dd014a8e2a7f2..31ff1173cd1f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalByAppId --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalByAppId -AppId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalByAppId -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 3153db6b039b8..f19d064d4e07d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalClaimMappingPolicyByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalClaimMappingPolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalClaimMappingPolicyByRef -ClaimsMappingPolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalClaimMappingPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Remove a claimsMappingPolicy from a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md index 4892c83120859..39906c1e74dc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef -ClaimsMappin [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Remove a claimsMappingPolicy from a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalDelegatedPermissionClassification.md index 893bc5265a5d9..b0c86fc135046 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalDelegatedPermissionClassification --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalDelegatedPermissionClassification [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalEndpoint.md index decf0e9229582..7f1c455b7e56f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalEndpoint --- @@ -27,7 +27,6 @@ Remove-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgServicePrincipalEndpoint -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 8b0b4ade47c61..a42f18064aab6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Remove a homeRealmDiscoveryPolicy from a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md index 5220064cfda11..6626b625424ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Remove a homeRealmDiscoveryPolicy from a servicePrincipal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalKey.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalKey.md index 91f633bdfe93d..d72ae7e15f25a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalKey.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalKey.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalKey --- @@ -27,7 +27,6 @@ Remove-MgServicePrincipalKey -ServicePrincipalId [-ResponseHeadersVaria [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -38,7 +37,6 @@ Remove-MgServicePrincipalKey -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -49,7 +47,6 @@ Remove-MgServicePrincipalKey -InputObject [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -60,7 +57,6 @@ Remove-MgServicePrincipalKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -80,7 +76,7 @@ As part of the request validation for this method, a proof of possession of an e | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md index f3892d23fa7b0..4ffbe38697f3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalOwnerByRef Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalOwnerByRef --- @@ -29,7 +29,6 @@ Remove-MgServicePrincipalOwnerByRef -DirectoryObjectId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalOwnerByRef -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -58,7 +56,7 @@ As a recommended best practice, service principals should have at least two owne | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md index 9914ffd74a958..942922b53da06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalOwnerDirectoryObjectByRef --- @@ -29,7 +29,6 @@ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -DirectoryObjectId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -58,7 +56,7 @@ As a recommended best practice, service principals should have at least two owne | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalPassword.md index 6fdc20e34e868..4e4217aefeed8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalPassword.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalPassword --- @@ -24,7 +24,6 @@ Remove-MgServicePrincipalPassword -ServicePrincipalId [-ResponseHeaders [-AdditionalProperties ] [-KeyId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -35,7 +34,6 @@ Remove-MgServicePrincipalPassword -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -46,7 +44,6 @@ Remove-MgServicePrincipalPassword -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -57,7 +54,6 @@ Remove-MgServicePrincipalPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,7 +71,7 @@ Remove a password from a servicePrincipal object. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md index a6d477e88c9a7..687eee49f79be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disab | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md new file mode 100644 index 0000000000000..350fca0407e22 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -0,0 +1,477 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.Applications-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp +--- + +# Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + +## SYNOPSIS + +Delete approvedClientApp + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-IfMatch ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject [-IfMatch ] [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete approvedClientApp + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId + +``` +This example shows how to use the Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + +## PARAMETERS + +### -ApprovedClientAppId + +The unique identifier of approvedClientApp + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IApplicationsIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ServicePrincipalId + +The unique identifier of servicePrincipal + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## 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 + [AppId ]: Alternate key of application + [AppManagementPolicyId ]: The unique identifier of appManagementPolicy + [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment + [ApplicationId ]: The unique identifier of application + [ApplicationTemplateId ]: The unique identifier of applicationTemplate + [ApprovedClientAppId ]: The unique identifier of approvedClientApp + [ClaimsMappingPolicyId ]: The unique identifier of claimsMappingPolicy + [DelegatedPermissionClassificationId ]: The unique identifier of delegatedPermissionClassification + [DirectoryDefinitionId ]: The unique identifier of directoryDefinition + [DirectoryObjectId ]: The unique identifier of directoryObject + [EndpointId ]: The unique identifier of endpoint + [ExtensionPropertyId ]: The unique identifier of extensionProperty + [FederatedIdentityCredentialId ]: The unique identifier of federatedIdentityCredential + [GroupId ]: The unique identifier of group + [HomeRealmDiscoveryPolicyId ]: The unique identifier of homeRealmDiscoveryPolicy + [Name ]: Alternate key of federatedIdentityCredential + [OAuth2PermissionGrantId ]: The unique identifier of oAuth2PermissionGrant + [ServicePrincipalId ]: The unique identifier of servicePrincipal + [SynchronizationJobId ]: The unique identifier of synchronizationJob + [SynchronizationTemplateId ]: The unique identifier of synchronizationTemplate + [TargetDeviceGroupId ]: The unique identifier of targetDeviceGroup + [TokenIssuancePolicyId ]: The unique identifier of tokenIssuancePolicy + [TokenLifetimePolicyId ]: The unique identifier of tokenLifetimePolicy + [UniqueName ]: Alternate key of application + [UserId ]: The unique identifier of user + + +## RELATED LINKS + +- [Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-approvedclientapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md index 4377b4a08b80b..cb8099d7acace 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup --- @@ -29,7 +29,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,9 +55,9 @@ Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RD | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronization.md index a0e263aacda40..0d4e355f43596 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronization --- @@ -27,7 +27,6 @@ Remove-MgServicePrincipalSynchronization -ServicePrincipalId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgServicePrincipalSynchronization -InputObject [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJob.md index d2452043002fd..c372710525105 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationJob --- @@ -29,7 +29,6 @@ Remove-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUpload.md index 63890df5325dd..202c987bc22cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationJobBulkUpload --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUploadContent.md index ce86d22a8596a..501dded071c9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationJobBulkUploadContent --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUploadContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchema.md index 4287a9caef692..b705cf1b91c57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationJobSchema --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -56,7 +54,7 @@ Delete navigation property schema for servicePrincipals | --------------- | ------------------------------------------ | | Delegated (work or school account) | Synchronization.ReadWrite.All, CustomSecAttributeProvisioning.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, CustomSecAttributeProvisioning.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.ReadWrite.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchemaDirectory.md index 9092dcfeab0f5..cddce371408ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationJobSchemaDirectory --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplate.md index e77ae430699c9..8398c45eaea8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationTemplate --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationTemplate -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchema.md index 364a1ef659fc7..1a8620952a5d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationTemplateSchema --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md index 98cc24bb0fc8f..88e5d349f18fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyByRef.md index 41afe49227d2e..6d7b85d39690f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalTokenIssuancePolicyByRef --- @@ -27,7 +27,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef.md index dedb3bca57dff..a5f397f204159 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef -ServicePri [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyByRef.md index 83c9b9b73dc91..d1169d05cabf5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalTokenLifetimePolicyByRef --- @@ -27,7 +27,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md index fdbac3c0b93d8..0ddb936d31908 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef --- @@ -28,7 +28,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef -ServicePri [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,9 +53,9 @@ Remove a tokenLifetimePolicy object from a service principal. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Application.ReadWrite.All, | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.ReadWrite.ApplicationConfiguration, | | Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgUserAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgUserAppRoleAssignment.md index 268030cb194e4..50f477a27c16d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgUserAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgUserAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserAppRoleAssignment --- @@ -27,7 +27,6 @@ Remove-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserAppRoleAssignment -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgApplicationSynchronizationJob.md index 14466f842e28c..ac026b50d60b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restart-MgApplicationSynchronizationJob --- @@ -29,7 +29,6 @@ Restart-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-Criteria ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Restart @@ -40,7 +39,6 @@ Restart-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentityExpanded @@ -51,7 +49,6 @@ Restart-MgApplicationSynchronizationJob -InputObject [-Criteria ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentity @@ -62,7 +59,6 @@ Restart-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgServicePrincipalSynchronizationJob.md index f0140341be8b4..5b8cd2c4ebb4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Restart-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restart-MgServicePrincipalSynchronizationJob --- @@ -30,7 +30,6 @@ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Restart @@ -42,7 +41,6 @@ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentityExpanded @@ -53,7 +51,6 @@ Restart-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentity @@ -64,7 +61,6 @@ Restart-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationLogo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationLogo.md index 46152a8b1f851..59277c7254605 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationLogo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationLogo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgApplicationLogo --- @@ -28,7 +28,6 @@ Set-MgApplicationLogo -ApplicationId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -38,7 +37,6 @@ Set-MgApplicationLogo -InputObject -InFile [-Da [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronization.md index d987612923f5f..b4aee816a60fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgApplicationSynchronization --- @@ -29,7 +29,6 @@ Set-MgApplicationSynchronization -ApplicationId [-ResponseHeadersVariab [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -39,7 +38,7 @@ Set-MgApplicationSynchronization -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentityExpanded @@ -52,7 +51,6 @@ Set-MgApplicationSynchronization -InputObject [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +60,7 @@ Set-MgApplicationSynchronization -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationJobBulkUploadContent.md index bd67ca0bb137d..02cb137c993f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgApplicationSynchronizationJobBulkUploadContent --- @@ -28,7 +28,6 @@ Set-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -39,7 +38,6 @@ Set-MgApplicationSynchronizationJobBulkUploadContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationSecret.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationSecret.md index d57f9cf13368d..98af732517c36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationSecret.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationSynchronizationSecret.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgApplicationSynchronizationSecret --- @@ -28,7 +28,7 @@ Set-MgApplicationSynchronizationSecret -ApplicationId [-ResponseHeaders [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Set @@ -39,7 +39,6 @@ Set-MgApplicationSynchronizationSecret -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +49,7 @@ Set-MgApplicationSynchronizationSecret -InputObject [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -61,7 +60,6 @@ Set-MgApplicationSynchronizationSecret -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationVerifiedPublisher.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationVerifiedPublisher.md index a557dfe48878b..aae5425cce893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationVerifiedPublisher.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgApplicationVerifiedPublisher.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgApplicationVerifiedPublisher --- @@ -29,7 +29,6 @@ Set-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVari [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgApplicationVerifiedPublisher -InputObject [-VerifiedPublisherId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgApplicationVerifiedPublisher -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronization.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronization.md index 387d6e7012fcf..eadea29350ede 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronization.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronization.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgServicePrincipalSynchronization --- @@ -30,7 +30,6 @@ Set-MgServicePrincipalSynchronization -ServicePrincipalId [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,7 @@ Set-MgServicePrincipalSynchronization -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentityExpanded @@ -53,7 +52,6 @@ Set-MgServicePrincipalSynchronization -InputObject [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +61,7 @@ Set-MgServicePrincipalSynchronization -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationJobBulkUploadContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationJobBulkUploadContent.md index 664b5ab3f842e..12da22ebe0698 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationJobBulkUploadContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationJobBulkUploadContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgServicePrincipalSynchronizationJobBulkUploadContent --- @@ -28,7 +28,6 @@ Set-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -39,7 +38,6 @@ Set-MgServicePrincipalSynchronizationJobBulkUploadContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationSecret.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationSecret.md index a5a24442a137c..578745fe41190 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationSecret.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Set-MgServicePrincipalSynchronizationSecret.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgServicePrincipalSynchronizationSecret --- @@ -28,7 +28,7 @@ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Set @@ -39,7 +39,6 @@ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +49,7 @@ Set-MgServicePrincipalSynchronizationSecret -InputObject [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -61,7 +60,6 @@ Set-MgServicePrincipalSynchronizationSecret -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgApplicationSynchronizationJob.md index 63597f7207a7e..ff74c8f8bc9b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Start-MgApplicationSynchronizationJob --- @@ -31,7 +31,6 @@ Start-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJo [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -41,7 +40,6 @@ Start-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgServicePrincipalSynchronizationJob.md index 918ce7adf74a8..fb877a3605cea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Start-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Start-MgServicePrincipalSynchronizationJob --- @@ -32,7 +32,6 @@ Start-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -42,7 +41,6 @@ Start-MgServicePrincipalSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgApplicationSynchronizationJob.md index 451280604ec80..84222595f6f2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Suspend-MgApplicationSynchronizationJob --- @@ -28,7 +28,6 @@ Suspend-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PauseViaIdentity @@ -38,7 +37,6 @@ Suspend-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgServicePrincipalSynchronizationJob.md index 11fc07f1d4e93..75d4aa5dc2674 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Suspend-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Suspend-MgServicePrincipalSynchronizationJob --- @@ -29,7 +29,6 @@ Suspend-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PauseViaIdentity @@ -39,7 +38,6 @@ Suspend-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationProperty.md index c468886845208..861755405a34f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Test-MgApplicationProperty --- @@ -37,7 +37,6 @@ Test-MgApplicationProperty [-ResponseHeadersVariable ] [-AdditionalPrope [-OnBehalfOfUserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -48,7 +47,6 @@ Test-MgApplicationProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationSynchronizationJobCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationSynchronizationJobCredential.md index 9e45696fe1f1a..bb627294a281f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationSynchronizationJobCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgApplicationSynchronizationJobCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Test-MgApplicationSynchronizationJobCredential --- @@ -30,7 +30,6 @@ Test-MgApplicationSynchronizationJobCredential -ApplicationId [-UseSavedCredentials] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -42,7 +41,6 @@ Test-MgApplicationSynchronizationJobCredential -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentityExpanded @@ -55,7 +53,6 @@ Test-MgApplicationSynchronizationJobCredential -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentity @@ -66,7 +63,6 @@ Test-MgApplicationSynchronizationJobCredential -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalProperty.md index 79b65b8060793..66724fa0f1748 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Test-MgServicePrincipalProperty --- @@ -37,7 +37,6 @@ Test-MgServicePrincipalProperty [-ResponseHeadersVariable ] [-MailNickname ] [-OnBehalfOfUserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -48,7 +47,6 @@ Test-MgServicePrincipalProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalSynchronizationJobCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalSynchronizationJobCredential.md index e7ba6683beb39..719eaac23dc5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalSynchronizationJobCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Test-MgServicePrincipalSynchronizationJobCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Test-MgServicePrincipalSynchronizationJobCredential --- @@ -30,7 +30,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -ServicePrincipalId [-UseSavedCredentials] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -42,7 +41,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentityExpanded @@ -55,7 +53,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentity @@ -66,7 +63,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplication.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplication.md index f7a4760285bcc..9b59eb5cac271 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplication.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplication.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplication --- @@ -57,7 +57,7 @@ Update-MgApplication -ApplicationId [-ResponseHeadersVariable ] [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -67,7 +67,6 @@ Update-MgApplication -ApplicationId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -106,7 +105,7 @@ Update-MgApplication -InputObject [-ResponseHeadersVaria [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -116,7 +115,7 @@ Update-MgApplication -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -133,9 +132,9 @@ This API can also create an agentIdentityBlueprint object if it doesn't exist, o | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.ReadWrite.All, AgentIdentityBlueprint.UpdateBranding.All, AgentIdentityBlueprint.UpdateAuthProperties.All, AgentIdentityBlueprint.ReadWrite.All, AgentIdentityBlueprint.AddRemoveCreds.All, | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprint.AddRemoveCreds.All, AgentIdentityBlueprint.ReadWrite.All, AgentIdentityBlueprint.UpdateAuthProperties.All, AgentIdentityBlueprint.UpdateBranding.All, AgentIdentityBlueprintPrincipal.ReadWrite.All, | | Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.ReadWrite.All, AgentIdentityBlueprint.UpdateBranding.All, AgentIdentityBlueprint.UpdateAuthProperties.All, AgentIdentityBlueprint.ReadWrite.All, AgentIdentityBlueprint.AddRemoveCreds.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.AddRemoveCreds.All, AgentIdentityBlueprint.ReadWrite.All, AgentIdentityBlueprint.UpdateAuthProperties.All, AgentIdentityBlueprint.UpdateBranding.All, AgentIdentityBlueprintPrincipal.ReadWrite.All, Application.ReadWrite.All, | ## EXAMPLES ### Example 1: Update an application @@ -2114,14 +2113,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2129,6 +2136,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLES : The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. @@ -2243,14 +2263,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2258,6 +2286,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppRoles ]: The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByAppId.md index d3958c2248c42..9dbca0fc2d462 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationByAppId --- @@ -57,7 +57,7 @@ Update-MgApplicationByAppId -AppId [-ResponseHeadersVariable ] [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -96,7 +96,7 @@ Update-MgApplicationByAppId -InputObject [-AppId ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -106,7 +106,6 @@ Update-MgApplicationByAppId -AppId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -116,7 +115,7 @@ Update-MgApplicationByAppId -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -2094,14 +2093,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2109,6 +2116,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLES : The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. @@ -2223,14 +2243,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2238,6 +2266,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppRoles ]: The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByUniqueName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByUniqueName.md index 249a653bbb325..003be47ef3334 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByUniqueName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationByUniqueName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationByUniqueName --- @@ -57,7 +57,7 @@ Update-MgApplicationByUniqueName -UniqueName [-ResponseHeadersVariable [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -96,7 +96,7 @@ Update-MgApplicationByUniqueName -InputObject [-UniqueNa [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -106,7 +106,6 @@ Update-MgApplicationByUniqueName -UniqueName -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -116,7 +115,7 @@ Update-MgApplicationByUniqueName -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -2126,14 +2125,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2141,6 +2148,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLES : The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. @@ -2255,14 +2275,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2270,6 +2298,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppRoles ]: The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationExtensionProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationExtensionProperty.md index 377f8cef042cc..38e00f1d6a77f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationExtensionProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationExtensionProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationExtensionProperty --- @@ -29,7 +29,7 @@ Update-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,7 @@ Update-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +51,7 @@ Update-MgApplicationExtensionProperty -InputObject [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +61,7 @@ Update-MgApplicationExtensionProperty -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredential.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredential.md index 4e61c1b4b031f..46daa0f23782a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredential.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationFederatedIdentityCredential --- @@ -31,7 +31,6 @@ Update-MgApplicationFederatedIdentityCredential -ApplicationId [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgApplicationFederatedIdentityCredential -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +51,7 @@ Update-MgApplicationFederatedIdentityCredential -InputObject ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +61,7 @@ Update-MgApplicationFederatedIdentityCredential -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredentialByName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredentialByName.md index cd2b9f99f44bf..4103b99bcf1ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredentialByName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationFederatedIdentityCredentialByName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationFederatedIdentityCredentialByName --- @@ -30,7 +30,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -ApplicationId -N [-Description ] [-Id ] [-Issuer ] [-Name1 ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -ApplicationId -N -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +51,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-Description ] [-Id ] [-Issuer ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +61,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJob.md index 40e49e70785ed..db514e561a814 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationJob --- @@ -30,7 +30,7 @@ Update-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgApplicationSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgApplicationSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobBulkUpload.md index 8243e2b8d9c56..c55cfdd372090 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationJobBulkUpload --- @@ -28,7 +28,6 @@ Update-MgApplicationSynchronizationJobBulkUpload -ApplicationId [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgApplicationSynchronizationJobBulkUpload -ApplicationId -SynchronizationJobId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +47,7 @@ Update-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +57,6 @@ Update-MgApplicationSynchronizationJobBulkUpload -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchema.md index 5af9cba6ab91f..ecfa8a7a48fda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationJobSchema --- @@ -29,7 +29,7 @@ Update-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,7 @@ Update-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +51,7 @@ Update-MgApplicationSynchronizationJobSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +61,7 @@ Update-MgApplicationSynchronizationJobSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchemaDirectory.md index eb67f5fde561c..d786aa47253c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +62,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplate.md index e9bf5deee97b6..14e0af42a8203 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationTemplate --- @@ -31,7 +31,6 @@ Update-MgApplicationSynchronizationTemplate -ApplicationId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -44,7 +43,6 @@ Update-MgApplicationSynchronizationTemplate -InputObject [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -55,7 +53,6 @@ Update-MgApplicationSynchronizationTemplate -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgApplicationSynchronizationTemplate -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchema.md index d563fc75d2adb..148b024ac4a92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationTemplateSchema --- @@ -29,7 +29,7 @@ Update-MgApplicationSynchronizationTemplateSchema -ApplicationId [-Id ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgApplicationSynchronizationTemplateSchema -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgApplicationSynchronizationTemplateSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgApplicationSynchronizationTemplateSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchemaDirectory.md index f023801869ad1..8cc20382940ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgApplicationSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgApplicationSynchronizationTemplateSchemaDirectory --- @@ -30,7 +30,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgGroupAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgGroupAppRoleAssignment.md index 61160457aac1f..0ab9c8b1be5b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgGroupAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgGroupAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgGroupAppRoleAssignment --- @@ -30,7 +30,6 @@ Update-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,7 @@ Update-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,6 @@ Update-MgGroupAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +61,7 @@ Update-MgGroupAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipal.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipal.md index 4e0f505206ce1..aa1e9a5ecc0f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipal.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipal.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipal --- @@ -59,7 +59,6 @@ Update-MgServicePrincipal -ServicePrincipalId [-ResponseHeadersVariable [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -69,7 +68,7 @@ Update-MgServicePrincipal -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -110,7 +109,6 @@ Update-MgServicePrincipal -InputObject [-ResponseHeaders [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -120,7 +118,7 @@ Update-MgServicePrincipal -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -137,9 +135,9 @@ This API can also create an agentIdentityBlueprintPrincipal object from an agent | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentity.EnableDisable.All, | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentity.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentity.EnableDisable.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentity.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Update the properties of a service principal @@ -2163,14 +2161,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2178,6 +2184,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLEASSIGNEDTO : App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. @@ -2308,14 +2327,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2323,6 +2350,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppOwnerOrganizationId ]: Contains the tenant ID where the application is registered. This is applicable only to service principals backed by applications. Supports $filter (eq, ne, NOT, ge, le). diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignedTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignedTo.md index bde0d34a9a8d5..b88c8624a344c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignedTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignedTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalAppRoleAssignedTo --- @@ -30,7 +30,7 @@ Update-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +53,6 @@ Update-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -64,7 +62,7 @@ Update-MgServicePrincipalAppRoleAssignedTo -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignment.md index ba63f61650fd4..8c1e674ac5494 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalAppRoleAssignment --- @@ -30,7 +30,7 @@ Update-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +53,6 @@ Update-MgServicePrincipalAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -64,7 +62,7 @@ Update-MgServicePrincipalAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalByAppId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalByAppId.md index cacbcf705f245..71efd5e379057 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalByAppId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalByAppId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalByAppId --- @@ -59,7 +59,6 @@ Update-MgServicePrincipalByAppId -AppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -100,7 +99,6 @@ Update-MgServicePrincipalByAppId -InputObject [-AppId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -110,7 +108,6 @@ Update-MgServicePrincipalByAppId -AppId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -120,7 +117,7 @@ Update-MgServicePrincipalByAppId -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -2173,14 +2170,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2188,6 +2193,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction APPROLEASSIGNEDTO : App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. @@ -2318,14 +2336,22 @@ Always null when the object hasn't been deleted. [Restrictions ]: customAppManagementConfiguration [(Any) ]: This indicates any property can be added to this object. [KeyCredentials ]: Collection of keyCredential restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions + [(Any) ]: This indicates any property can be added to this object. + [CustomSecurityAttributes ]: The collection of customSecurityAttributeExemption to exempt from the policy enforcement. +Limit of 5. + [Id ]: The unique identifier for an entity. +Read-only. + [Operator ]: customSecurityAttributeComparisonOperator [MaxLifetime ]: String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. -This property is required when restrictionType is set to keyLifetime. +This property is required when restrictionType is set to asymmetricKeyLifetime. [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appKeyCredentialRestrictionType [State ]: appManagementRestrictionState [PasswordCredentials ]: Collection of password restrictions settings to be applied to an application or service principal. + [ExcludeActors ]: appManagementPolicyActorExemptions [MaxLifetime ]: String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime. @@ -2333,6 +2359,19 @@ This property is required when restrictionType is set to passwordLifetime. For existing applications, the enforcement date can be retroactively applied. [RestrictionType ]: appCredentialRestrictionType [State ]: appManagementRestrictionState + [ApplicationRestrictions ]: customAppManagementApplicationConfiguration + [(Any) ]: This indicates any property can be added to this object. + [IdentifierUris ]: identifierUriConfiguration + [(Any) ]: This indicates any property can be added to this object. + [NonDefaultUriAddition ]: identifierUriRestriction + [(Any) ]: This indicates any property can be added to this object. + [ExcludeActors ]: appManagementPolicyActorExemptions + [ExcludeAppsReceivingV2Tokens ]: If true, the restriction isn't enforced for applications that are configured to receive V2 tokens in Microsoft Entra ID; else, the restriction is enforced for those applications. + [ExcludeSaml ]: If true, the restriction isn't enforced for SAML applications in Microsoft Entra ID; else, the restriction is enforced for those applications. + [RestrictForAppsCreatedAfterDateTime ]: Specifies the date from which the policy restriction applies to newly created applications. +For existing applications, the enforcement date can be retroactively applied. + [State ]: appManagementRestrictionState + [UriAdditionWithoutUniqueTenantIdentifier ]: identifierUriRestriction [AppOwnerOrganizationId ]: Contains the tenant ID where the application is registered. This is applicable only to service principals backed by applications. Supports $filter (eq, ne, NOT, ge, le). diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalDelegatedPermissionClassification.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalDelegatedPermissionClassification.md index 43f82396d63ad..e52b3c9f6b562 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalDelegatedPermissionClassification.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalDelegatedPermissionClassification.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalDelegatedPermissionClassification --- @@ -29,7 +29,7 @@ Update-MgServicePrincipalDelegatedPermissionClassification [-Id ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgServicePrincipalDelegatedPermissionClassification [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +62,6 @@ Update-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalEndpoint.md index 940ed011e1d39..dfb4a719ba4e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalEndpoint --- @@ -29,7 +29,6 @@ Update-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,7 @@ Update-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +50,6 @@ Update-MgServicePrincipalEndpoint -InputObject [-ProviderResourceId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +59,7 @@ Update-MgServicePrincipalEndpoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfiguration.md index fba2b9e670f39..aeb49781e67fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalRemoteDesktopSecurityConfiguration --- @@ -30,7 +30,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-IsRemoteDesktopProtocolEnabled] [-TargetDeviceGroups ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +63,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,9 +79,9 @@ Use this configuration to enable or disable the Microsoft Entra ID Remote Deskto | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md new file mode 100644 index 0000000000000..86f58b4c16ac4 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -0,0 +1,601 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.Applications-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp +--- + +# Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + +## SYNOPSIS + +Update the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp?view=graph-powershell-beta) + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId + -BodyParameter [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +$params = @{ + "@odata.type" = "#microsoft.graph.approvedClientApp" + displayName = "Client App 1" +} + +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId -BodyParameter $params + +``` +This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ApprovedClientAppId + +The unique identifier of approvedClientApp + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +approvedClientApp +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DisplayName + +The display name of the approved client application. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IApplicationsIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ServicePrincipalId + +The unique identifier of servicePrincipal + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IApplicationsIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + +## 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. + +BODYPARAMETER ``: approvedClientApp + [(Any) ]: This indicates any property can be added to this object. + [Id ]: The unique identifier for an entity. +Read-only. + [DisplayName ]: The display name of the approved client application. + +INPUTOBJECT ``: Identity Parameter + [AppId ]: Alternate key of application + [AppManagementPolicyId ]: The unique identifier of appManagementPolicy + [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment + [ApplicationId ]: The unique identifier of application + [ApplicationTemplateId ]: The unique identifier of applicationTemplate + [ApprovedClientAppId ]: The unique identifier of approvedClientApp + [ClaimsMappingPolicyId ]: The unique identifier of claimsMappingPolicy + [DelegatedPermissionClassificationId ]: The unique identifier of delegatedPermissionClassification + [DirectoryDefinitionId ]: The unique identifier of directoryDefinition + [DirectoryObjectId ]: The unique identifier of directoryObject + [EndpointId ]: The unique identifier of endpoint + [ExtensionPropertyId ]: The unique identifier of extensionProperty + [FederatedIdentityCredentialId ]: The unique identifier of federatedIdentityCredential + [GroupId ]: The unique identifier of group + [HomeRealmDiscoveryPolicyId ]: The unique identifier of homeRealmDiscoveryPolicy + [Name ]: Alternate key of federatedIdentityCredential + [OAuth2PermissionGrantId ]: The unique identifier of oAuth2PermissionGrant + [ServicePrincipalId ]: The unique identifier of servicePrincipal + [SynchronizationJobId ]: The unique identifier of synchronizationJob + [SynchronizationTemplateId ]: The unique identifier of synchronizationTemplate + [TargetDeviceGroupId ]: The unique identifier of targetDeviceGroup + [TokenIssuancePolicyId ]: The unique identifier of tokenIssuancePolicy + [TokenLifetimePolicyId ]: The unique identifier of tokenLifetimePolicy + [UniqueName ]: Alternate key of application + [UserId ]: The unique identifier of user + + +## RELATED LINKS + +- [Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/approvedclientapp-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md index ffda3a6bd9a31..6db7efd61f6b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup --- @@ -29,7 +29,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +51,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +62,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,9 +78,9 @@ You can configure a maximum of 10 target device groups for the remoteDesktopSecu | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | +| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +| Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJob.md index 7cc61e9a931aa..439ef99fd5169 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationJob --- @@ -31,7 +31,7 @@ Update-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,6 @@ Update-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,7 @@ Update-MgServicePrincipalSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +64,7 @@ Update-MgServicePrincipalSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobBulkUpload.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobBulkUpload.md index 8f698e8ee8071..3a9b8c0051784 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobBulkUpload.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobBulkUpload.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationJobBulkUpload --- @@ -28,7 +28,6 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +47,7 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +57,6 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchema.md index 8db6d86e9e02a..b4f92bfcdb575 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationJobSchema --- @@ -32,7 +32,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-Id ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +43,6 @@ Update-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +64,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchemaDirectory.md index 386418b63337c..491968fde62c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationJobSchemaDirectory --- @@ -29,7 +29,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +62,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplate.md index e4b7bf17cc4bc..0ef0e835ccf4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationTemplate --- @@ -31,7 +31,6 @@ Update-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +53,6 @@ Update-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgServicePrincipalSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchema.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchema.md index 4064baf469970..72544699ea454 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchema.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchema.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationTemplateSchema --- @@ -29,7 +29,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md index 11676e462b0f1..13b766ecf1931 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory --- @@ -30,7 +30,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgUserAppRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgUserAppRoleAssignment.md index 5520b23ba9448..ac3349f52eb7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgUserAppRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgUserAppRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Applications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment Locale: en-US Module Name: Microsoft.Graph.Applications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserAppRoleAssignment --- @@ -30,7 +30,6 @@ Update-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,7 @@ Update-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,6 @@ Update-MgUserAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +61,7 @@ Update-MgUserAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -13,36 +22,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -57,7 +36,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -65,7 +44,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } @@ -81,55 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - - Import-Module Microsoft.Graph.Authentication -Global - $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) + } - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -145,10 +124,14 @@ function Get-FolderByProfile { ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -160,107 +143,102 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped + # and never regenerated (which is what produced the mass-deletion refresh PRs). + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." + return + } + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command $MetadataCommands[$Command] = $true - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } - } - } elseif (-not (Test-Path $CmdletDocsPath)) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { Write-Warning "Cmdlet $Command is not available." } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - if ($CmdletCount -eq 0) { - Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue + if($CmdletCount -eq 0){ + Remove-Item -LiteralPath $Destination -Force -Recurse } - } - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force @@ -280,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; @@ -136,7 +147,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -175,7 +179,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File @@ -201,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file