From 0cd58c235cd1e7ae278e1e7e4b30322855bc9906 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:38:22 -0700 Subject: [PATCH 01/17] revert 790 --- scripts/GenerateMarkDown.ps1 | 177 +++++++---------------------------- 1 file changed, 33 insertions(+), 144 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..d7fd5d244a5ea 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -13,36 +13,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()] @@ -86,11 +56,10 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } 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" @@ -98,34 +67,10 @@ function Start-GraphHelp { $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" - - # 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)" - } - } - } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" 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 . @@ -144,11 +89,7 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $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 - + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -163,104 +104,52 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - + + Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } $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" - } + if (-not(Test-Path $CmdletDocsPath)) { + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } - } elseif (-not (Test-Path $CmdletDocsPath)) { - 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) { + 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 - } } - # 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 - } } - - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force From e6db7aca807cfefd0501cd38834b6fa3f6728b39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:43:12 -0700 Subject: [PATCH 02/17] remove stabilize msdate from pipeline --- azure-pipelines/powershell-docs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..603004858ab45 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -158,14 +158,6 @@ extends: 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: From 73a8c601468325d6a6906f1c357449e9cc7d5eba Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:01:17 -0700 Subject: [PATCH 03/17] Prevent mass doc deletion when Graph modules fail to load Guard GenerateMarkDown.ps1 so a module's docs are only deleted when the module is available to regenerate them. Skip-and-preserve per workload module, and abort if Authentication is unavailable, avoiding refresh PRs that delete thousands of docs after a failed module install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index d7fd5d244a5ea..8c4b03f16ddf8 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -56,9 +56,15 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + + # 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 Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - - Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ @@ -101,6 +107,16 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions: if the module failed to install/import, + # skip it entirely so its committed docs are preserved instead of being deleted + # and never regenerated (which is what produced the mass-deletion refresh PRs). + if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { + Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + return + } + Import-Module $Path -Force -Global -ErrorAction SilentlyContinue + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } From 07657def287d803ad342c41d6f0061804d49781b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:09:19 -0700 Subject: [PATCH 04/17] Normalize generated-commit author to Graph DevX Tooling bot EscapeDisallowedHtmlTags.ps1 and RemoveInvalidFullStops.ps1 hardcoded a personal git identity, so their stage commits in the weekly refresh PRs were attributed to an individual instead of the tooling bot. Align both with the other generation scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/EscapeDisallowedHtmlTags.ps1 | 4 ++-- scripts/RemoveInvalidFullStops.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..597d7a5633f81 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -23,8 +23,8 @@ function EscapeDisallowedHtmlTags { 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" } diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..db34789d58025 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -23,8 +23,8 @@ function Remove-InvalidFullStops { 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" } From 29c4a42a5ee11cabad11dfec978623090f64c623 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 11:36:40 -0700 Subject: [PATCH 05/17] Fix duplicated doc enrichment blocks and BOM churn in generation - UpdateLinks.ps1: only insert the beta/v1 '[!NOTE]' link when it is not already present, so weekly runs stop stacking duplicate note blocks. - GeneratePermissionsTable.ps1: skip files that already contain a '**Permissions**' table instead of prepending another copy each run. - GenerateMarkDown.ps1: write PlatyPS output as UTF-8 without BOM so every regenerated file no longer diffs on a leading BOM. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 4 ++-- scripts/GeneratePermissionsTable.ps1 | 7 ++++++- scripts/UpdateLinks.ps1 | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 8c4b03f16ddf8..3aaae05dc9f8d 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -27,7 +27,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") { @@ -35,7 +35,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 } diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..47e90ae3698f8 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -136,7 +136,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/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..fcc8d8e2253b2 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -175,7 +175,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 From a94085a9f3a84c441f3ed86dc5714407d8654618 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 12:15:46 -0700 Subject: [PATCH 06/17] Force LF line endings for generated markdown docs Add '*.md text eol=lf' to .gitattributes so PlatyPS/transform scripts, which run on Windows and emit CRLF, no longer produce line-ending churn in the weekly refresh PRs. Index blobs are already LF, so this only pins the working-tree checkout and future writes to LF. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) 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 From 19a3a1a450a7ffe97d24ef506837f842c15293e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 29 Jul 2026 11:57:43 -0700 Subject: [PATCH 07/17] Prevent mass doc deletion by overwriting in place and removing only orphans Bulk-deleting a module's docs before regenerating meant any transient import failure (installed but unimportable module, e.g. Authentication version conflict) wiped docs that were never regenerated, producing refresh PRs with thousands of missing files. Now: verify the module truly imports and exposes commands before processing (skip-and-preserve otherwise), overwrite each doc in place, and remove only genuine orphans whose command is no longer in the metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 56 +++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 3aaae05dc9f8d..0d5a062bef429 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -63,7 +63,7 @@ function Start-GraphHelp { 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 + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { @@ -108,21 +108,37 @@ function Get-FolderByProfile { $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath - # Guard against catastrophic deletions: if the module failed to install/import, - # skip it entirely so its committed docs are preserved instead of being deleted + # 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). - if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { - Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + $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) { + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } - Import-Module $Path -Force -Global -ErrorAction SilentlyContinue if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - - Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } + + # 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 $TocFileName = "$Path.md" $ModuleGuid = [guid]::NewGuid().ToString() @@ -147,19 +163,27 @@ function Get-FolderByProfile { Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - if (-not(Test-Path $CmdletDocsPath)) { - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path - } else { - Write-Warning "Cmdlet $Command is not available." - } - + $MetadataCommands[$Command] = $true + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } + + # 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 + } + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse } From 00db04466cdc97b8fcbf4298c23497504bb7fd81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 30 Jul 2026 17:20:46 -0700 Subject: [PATCH 08/17] Refactor weekly docs pipeline into isolated per-module stages Each Graph workload module now generates in its own Azure DevOps stage per SDK profile (~86 independent stages), giving every module a fresh agent and a clean assembly-load context. This structurally eliminates the "assembly with same name is already loaded" collisions that produced mass-deletion / no-op refresh PRs. - GenerateMarkDown.ps1: add -GraphProfileFilter and -ModuleFilter scoping; in scoped runs do a complete delete + full regen of the single module, throw before any deletion on import failure (fail-safe), and emit a ModuleGenerated signal only on success. - 9 post-processing scripts: add matching profile/module scoping and empty-commit guards so each touches only the target module folder. - update-template.yml: parameterized install (InstallProfile/Module) that installs only Authentication + the single workload submodule for isolated runs; install failures warn instead of failing. - New common-templates/generate-module-docs-steps.yml: full single-module sequence (install -> generate -> post-process -> push -> PR). Generate step is continueOnError and every later step is gated on ModuleGenerated, so a failing module deletes nothing, opens no PR, and never fails the overall pipeline. - New common-templates/module-stages.yml: emits one dependsOn:[] stage per module. - powershell-docs.yml: invoke module-stages.yml for v1.0 (incl. Authentication) and beta; each stage opens its own pull request. ms.date changes every run (StabilizeMsDate is intentionally not run) for reviewable PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .../generate-module-docs-steps.yml | 219 ++++++++++++++++ .../common-templates/module-stages.yml | 50 ++++ azure-pipelines/powershell-docs.yml | 248 ++++++++---------- azure-pipelines/update-template.yml | 60 ++++- scripts/CorrectRelatedLinks-AllFiles.ps1 | 10 +- scripts/EscapeDisallowedHtmlTags.ps1 | 16 +- scripts/GenerateAliasedDocs.ps1 | 11 +- scripts/GenerateMarkDown.ps1 | 93 +++++-- scripts/GeneratePermissionsTable.ps1 | 15 +- scripts/MsSubserviceUpdate.ps1 | 7 +- scripts/RemoveBoilerPlateCode.ps1 | 34 ++- scripts/RemoveInvalidFullStops.ps1 | 16 +- .../RepairExamplesDescriptionsAndTitle.ps1 | 14 +- scripts/UpdateLinks.ps1 | 9 +- 14 files changed, 600 insertions(+), 202 deletions(-) create mode 100644 azure-pipelines/common-templates/generate-module-docs-steps.yml create mode 100644 azure-pipelines/common-templates/module-stages.yml 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 603004858ab45..b6dc5b22f8b9b 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,148 +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: 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: azure-pipelines/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: azure-pipelines/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/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 597d7a5633f81..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 "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 0d5a062bef429..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 = @{} @@ -51,36 +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 - # 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." + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) } - Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop - Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - $GraphMapping = Get-GraphMapping - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } + # 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" - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + 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 + } } + 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 { @@ -95,6 +123,14 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json + + # 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 = $_ @@ -125,6 +161,12 @@ function Get-FolderByProfile { } } 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 } @@ -132,6 +174,13 @@ function Get-FolderByProfile { 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 @@ -209,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 47e90ae3698f8..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 $_"; 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 db34789d58025..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 "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 fcc8d8e2253b2..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" @@ -205,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 From 5202fe4d4c7f28cceeacc3451143fda9366e18b0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 11:11:08 -0700 Subject: [PATCH 09/17] Fix template path resolution in powershell-docs.yml Azure DevOps resolves template references relative to the directory of the referencing file. powershell-docs.yml lives in azure-pipelines/, so the "azure-pipelines/common-templates/module-stages.yml@self" path resolved to azure-pipelines/azure-pipelines/common-templates/module-stages.yml and failed with "Not Found". Use a path relative to the file's own directory instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- azure-pipelines/powershell-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index b6dc5b22f8b9b..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,7 +47,7 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "v1.0" ProfileLabel: "v1" @@ -99,7 +99,7 @@ extends: - Users.Actions - Users.Functions - WindowsUpdates - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "beta" ProfileLabel: "beta" From 0083a148d203c9b93078153221e7878ae8bd00fe Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:38:04 +0000 Subject: [PATCH 10/17] Updated markdown help --- .../Add-MgApplicationKey.md | 72 +-- .../Add-MgApplicationPassword.md | 68 +-- .../Add-MgServicePrincipalKey.md | 69 +-- .../Add-MgServicePrincipalPassword.md | 56 +- ...ServicePrincipalTokenSigningCertificate.md | 66 +-- .../Clear-MgApplicationVerifiedPublisher.md | 42 +- .../Confirm-MgApplicationMemberGroup.md | 59 +-- .../Confirm-MgApplicationMemberObject.md | 53 +- .../Confirm-MgServicePrincipalMemberGroup.md | 64 +-- .../Confirm-MgServicePrincipalMemberObject.md | 58 +-- ...cationSynchronizationJobSchemaDirectory.md | 47 +- ...nSynchronizationTemplateSchemaDirectory.md | 46 +- ...ncipalSynchronizationJobSchemaDirectory.md | 51 +- ...lSynchronizationTemplateSchemaDirectory.md | 46 +- .../Get-MgApplication.md | 100 +--- .../Get-MgApplicationAppManagementPolicy.md | 42 +- ...t-MgApplicationAppManagementPolicyByRef.md | 42 +- ...t-MgApplicationAppManagementPolicyCount.md | 46 +- .../Get-MgApplicationByAppId.md | 54 +- .../Get-MgApplicationById.md | 52 +- .../Get-MgApplicationByUniqueName.md | 52 +- .../Get-MgApplicationCount.md | 46 +- .../Get-MgApplicationCreatedOnBehalfOf.md | 46 +- .../Get-MgApplicationDelta.md | 48 +- .../Get-MgApplicationExtensionProperty.md | 56 +- ...Get-MgApplicationExtensionPropertyCount.md | 50 +- ...gApplicationFederatedIdentityCredential.md | 56 +- ...cationFederatedIdentityCredentialByName.md | 52 +- ...icationFederatedIdentityCredentialCount.md | 50 +- ...t-MgApplicationHomeRealmDiscoveryPolicy.md | 49 +- ...pplicationHomeRealmDiscoveryPolicyCount.md | 46 +- .../Get-MgApplicationLogo.md | 46 +- .../Get-MgApplicationMemberGroup.md | 55 +- .../Get-MgApplicationMemberObject.md | 59 +-- .../Get-MgApplicationOwner.md | 48 +- ...t-MgApplicationOwnerAsAppRoleAssignment.md | 47 +- .../Get-MgApplicationOwnerAsEndpoint.md | 47 +- ...et-MgApplicationOwnerAsServicePrincipal.md | 47 +- .../Get-MgApplicationOwnerAsUser.md | 47 +- .../Get-MgApplicationOwnerByRef.md | 48 +- .../Get-MgApplicationOwnerCount.md | 50 +- ...pplicationOwnerCountAsAppRoleAssignment.md | 46 +- .../Get-MgApplicationOwnerCountAsEndpoint.md | 46 +- ...ApplicationOwnerCountAsServicePrincipal.md | 46 +- .../Get-MgApplicationOwnerCountAsUser.md | 46 +- .../Get-MgApplicationSynchronization.md | 46 +- ...MgApplicationSynchronizationAccessToken.md | 58 +-- .../Get-MgApplicationSynchronizationJob.md | 48 +- ...ApplicationSynchronizationJobBulkUpload.md | 46 +- ...tionSynchronizationJobBulkUploadContent.md | 46 +- ...et-MgApplicationSynchronizationJobCount.md | 46 +- ...t-MgApplicationSynchronizationJobSchema.md | 46 +- ...cationSynchronizationJobSchemaDirectory.md | 48 +- ...nSynchronizationJobSchemaDirectoryCount.md | 46 +- ...MgApplicationSynchronizationSecretCount.md | 46 +- ...et-MgApplicationSynchronizationTemplate.md | 52 +- ...ApplicationSynchronizationTemplateCount.md | 50 +- ...pplicationSynchronizationTemplateSchema.md | 50 +- ...nSynchronizationTemplateSchemaDirectory.md | 48 +- ...hronizationTemplateSchemaDirectoryCount.md | 46 +- .../Get-MgApplicationTemplate.md | 54 +- .../Get-MgApplicationTemplateCount.md | 42 +- .../Get-MgApplicationTokenIssuancePolicy.md | 48 +- ...t-MgApplicationTokenIssuancePolicyByRef.md | 48 +- ...t-MgApplicationTokenIssuancePolicyCount.md | 50 +- .../Get-MgApplicationTokenLifetimePolicy.md | 48 +- ...t-MgApplicationTokenLifetimePolicyByRef.md | 48 +- ...t-MgApplicationTokenLifetimePolicyCount.md | 50 +- .../Get-MgGroupAppRoleAssignment.md | 46 +- .../Get-MgGroupAppRoleAssignmentCount.md | 50 +- .../Get-MgServicePrincipal.md | 100 +--- ...t-MgServicePrincipalAppManagementPolicy.md | 48 +- ...ervicePrincipalAppManagementPolicyCount.md | 46 +- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 48 +- ...gServicePrincipalAppRoleAssignedToCount.md | 50 +- ...Get-MgServicePrincipalAppRoleAssignment.md | 47 +- ...gServicePrincipalAppRoleAssignmentCount.md | 50 +- .../Get-MgServicePrincipalByAppId.md | 52 +- .../Get-MgServicePrincipalById.md | 52 +- ...et-MgServicePrincipalClaimMappingPolicy.md | 48 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 48 +- ...ServicePrincipalClaimMappingPolicyCount.md | 50 +- .../Get-MgServicePrincipalCount.md | 46 +- .../Get-MgServicePrincipalCreatedObject.md | 46 +- ...rincipalCreatedObjectAsServicePrincipal.md | 47 +- ...et-MgServicePrincipalCreatedObjectCount.md | 50 +- ...palCreatedObjectCountAsServicePrincipal.md | 46 +- ...ncipalDelegatedPermissionClassification.md | 45 +- ...lDelegatedPermissionClassificationCount.md | 50 +- .../Get-MgServicePrincipalDelta.md | 48 +- .../Get-MgServicePrincipalEndpoint.md | 49 +- .../Get-MgServicePrincipalEndpointCount.md | 46 +- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 47 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 48 +- ...ePrincipalHomeRealmDiscoveryPolicyCount.md | 50 +- .../Get-MgServicePrincipalMemberGroup.md | 59 +-- .../Get-MgServicePrincipalMemberObject.md | 63 +-- .../Get-MgServicePrincipalMemberOf.md | 45 +- ...cePrincipalMemberOfAsAdministrativeUnit.md | 48 +- ...ServicePrincipalMemberOfAsDirectoryRole.md | 48 +- .../Get-MgServicePrincipalMemberOfAsGroup.md | 47 +- .../Get-MgServicePrincipalMemberOfCount.md | 50 +- ...ncipalMemberOfCountAsAdministrativeUnit.md | 46 +- ...cePrincipalMemberOfCountAsDirectoryRole.md | 46 +- ...-MgServicePrincipalMemberOfCountAsGroup.md | 46 +- ...MgServicePrincipalOauth2PermissionGrant.md | 45 +- ...vicePrincipalOauth2PermissionGrantCount.md | 50 +- .../Get-MgServicePrincipalOwnedObject.md | 46 +- ...PrincipalOwnedObjectAsAppRoleAssignment.md | 47 +- ...ervicePrincipalOwnedObjectAsApplication.md | 47 +- ...MgServicePrincipalOwnedObjectAsEndpoint.md | 47 +- ...et-MgServicePrincipalOwnedObjectAsGroup.md | 48 +- ...ePrincipalOwnedObjectAsServicePrincipal.md | 47 +- .../Get-MgServicePrincipalOwnedObjectCount.md | 50 +- ...ipalOwnedObjectCountAsAppRoleAssignment.md | 46 +- ...ePrincipalOwnedObjectCountAsApplication.md | 46 +- ...vicePrincipalOwnedObjectCountAsEndpoint.md | 46 +- ...ServicePrincipalOwnedObjectCountAsGroup.md | 46 +- ...cipalOwnedObjectCountAsServicePrincipal.md | 46 +- .../Get-MgServicePrincipalOwner.md | 45 +- ...ervicePrincipalOwnerAsAppRoleAssignment.md | 48 +- .../Get-MgServicePrincipalOwnerAsEndpoint.md | 47 +- ...ServicePrincipalOwnerAsServicePrincipal.md | 48 +- .../Get-MgServicePrincipalOwnerAsUser.md | 47 +- .../Get-MgServicePrincipalOwnerByRef.md | 46 +- .../Get-MgServicePrincipalOwnerCount.md | 50 +- ...ePrincipalOwnerCountAsAppRoleAssignment.md | 46 +- ...-MgServicePrincipalOwnerCountAsEndpoint.md | 46 +- ...cePrincipalOwnerCountAsServicePrincipal.md | 46 +- .../Get-MgServicePrincipalOwnerCountAsUser.md | 46 +- ...cipalRemoteDesktopSecurityConfiguration.md | 52 +- ...SecurityConfigurationApprovedClientApp.md} | 301 +++++++---- ...ityConfigurationApprovedClientAppCount.md} | 215 ++------ ...pSecurityConfigurationTargetDeviceGroup.md | 56 +- ...rityConfigurationTargetDeviceGroupCount.md | 50 +- .../Get-MgServicePrincipalSynchronization.md | 46 +- ...vicePrincipalSynchronizationAccessToken.md | 58 +-- ...et-MgServicePrincipalSynchronizationJob.md | 56 +- ...cePrincipalSynchronizationJobBulkUpload.md | 46 +- ...ipalSynchronizationJobBulkUploadContent.md | 46 +- ...ServicePrincipalSynchronizationJobCount.md | 50 +- ...ervicePrincipalSynchronizationJobSchema.md | 52 +- ...ncipalSynchronizationJobSchemaDirectory.md | 48 +- ...lSynchronizationJobSchemaDirectoryCount.md | 46 +- ...vicePrincipalSynchronizationSecretCount.md | 46 +- ...ServicePrincipalSynchronizationTemplate.md | 52 +- ...cePrincipalSynchronizationTemplateCount.md | 50 +- ...ePrincipalSynchronizationTemplateSchema.md | 50 +- ...lSynchronizationTemplateSchemaDirectory.md | 48 +- ...hronizationTemplateSchemaDirectoryCount.md | 46 +- ...t-MgServicePrincipalTokenIssuancePolicy.md | 42 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 42 +- ...ervicePrincipalTokenIssuancePolicyCount.md | 46 +- ...t-MgServicePrincipalTokenLifetimePolicy.md | 48 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 48 +- ...ervicePrincipalTokenLifetimePolicyCount.md | 50 +- ...et-MgServicePrincipalTransitiveMemberOf.md | 45 +- ...lTransitiveMemberOfAsAdministrativeUnit.md | 48 +- ...ncipalTransitiveMemberOfAsDirectoryRole.md | 48 +- ...rvicePrincipalTransitiveMemberOfAsGroup.md | 48 +- ...ServicePrincipalTransitiveMemberOfCount.md | 50 +- ...sitiveMemberOfCountAsAdministrativeUnit.md | 46 +- ...lTransitiveMemberOfCountAsDirectoryRole.md | 46 +- ...PrincipalTransitiveMemberOfCountAsGroup.md | 46 +- .../Get-MgUserAppRoleAssignment.md | 50 +- .../Get-MgUserAppRoleAssignmentCount.md | 50 +- ...icationSynchronizationJobSchemaOperator.md | 48 +- ...onSynchronizationTemplateSchemaOperator.md | 52 +- ...incipalSynchronizationJobSchemaOperator.md | 52 +- ...alSynchronizationTemplateSchemaOperator.md | 52 +- ...tionApplicationSynchronizationJobSchema.md | 48 +- ...pplicationSynchronizationTemplateSchema.md | 52 +- ...ervicePrincipalSynchronizationJobSchema.md | 52 +- ...ePrincipalSynchronizationTemplateSchema.md | 52 +- ...Invoke-MgInstantiateApplicationTemplate.md | 60 +-- ...ationSynchronizationJobSchemaExpression.md | 58 +-- ...SynchronizationTemplateSchemaExpression.md | 58 +-- ...cipalSynchronizationJobSchemaExpression.md | 62 +-- ...SynchronizationTemplateSchemaExpression.md | 62 +-- .../Microsoft.Graph.Applications.md | 33 +- .../New-MgApplication.md | 154 +++--- ...w-MgApplicationAppManagementPolicyByRef.md | 58 +-- .../New-MgApplicationExtensionProperty.md | 57 +-- ...gApplicationFederatedIdentityCredential.md | 58 +-- .../New-MgApplicationOwnerByRef.md | 64 +-- .../New-MgApplicationSynchronizationJob.md | 58 +-- ...MgApplicationSynchronizationJobOnDemand.md | 56 +- ...cationSynchronizationJobSchemaDirectory.md | 51 +- ...ew-MgApplicationSynchronizationTemplate.md | 52 +- ...nSynchronizationTemplateSchemaDirectory.md | 51 +- ...w-MgApplicationTokenIssuancePolicyByRef.md | 58 +-- ...w-MgApplicationTokenLifetimePolicyByRef.md | 58 +-- .../New-MgGroupAppRoleAssignment.md | 66 +-- .../New-MgServicePrincipal.md | 130 ++--- ...New-MgServicePrincipalAppRoleAssignedTo.md | 56 +- ...New-MgServicePrincipalAppRoleAssignment.md | 56 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 58 +-- ...ncipalDelegatedPermissionClassification.md | 56 +- .../New-MgServicePrincipalEndpoint.md | 60 +-- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 58 +-- .../New-MgServicePrincipalOwnerByRef.md | 58 +-- ...SecurityConfigurationApprovedClientApp.md} | 231 +++++---- ...pSecurityConfigurationTargetDeviceGroup.md | 56 +- ...ew-MgServicePrincipalSynchronizationJob.md | 64 +-- ...vicePrincipalSynchronizationJobOnDemand.md | 74 +-- ...ncipalSynchronizationJobSchemaDirectory.md | 51 +- ...ServicePrincipalSynchronizationTemplate.md | 52 +- ...lSynchronizationTemplateSchemaDirectory.md | 51 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 52 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 58 +-- .../New-MgUserAppRoleAssignment.md | 57 +-- .../Remove-MgApplication.md | 50 +- ...anagementPolicyAppManagementPolicyByRef.md | 42 +- ...e-MgApplicationAppManagementPolicyByRef.md | 473 ----------------- .../Remove-MgApplicationByAppId.md | 46 +- .../Remove-MgApplicationByUniqueName.md | 46 +- .../Remove-MgApplicationExtensionProperty.md | 50 +- ...gApplicationFederatedIdentityCredential.md | 50 +- ...cationFederatedIdentityCredentialByName.md | 46 +- .../Remove-MgApplicationKey.md | 61 +-- .../Remove-MgApplicationLogo.md | 44 +- ...-MgApplicationOwnerDirectoryObjectByRef.md | 50 +- .../Remove-MgApplicationPassword.md | 58 +-- .../Remove-MgApplicationSynchronization.md | 44 +- .../Remove-MgApplicationSynchronizationJob.md | 44 +- ...ApplicationSynchronizationJobBulkUpload.md | 44 +- ...tionSynchronizationJobBulkUploadContent.md | 44 +- ...e-MgApplicationSynchronizationJobSchema.md | 44 +- ...cationSynchronizationJobSchemaDirectory.md | 44 +- ...ve-MgApplicationSynchronizationTemplate.md | 44 +- ...pplicationSynchronizationTemplateSchema.md | 48 +- ...nSynchronizationTemplateSchemaDirectory.md | 44 +- ...e-MgApplicationTokenIssuancePolicyByRef.md | 479 ------------------ ...nIssuancePolicyTokenIssuancePolicyByRef.md | 50 +- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 50 +- .../Remove-MgGroupAppRoleAssignment.md | 50 +- .../Remove-MgServicePrincipal.md | 50 +- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 50 +- ...ove-MgServicePrincipalAppRoleAssignment.md | 50 +- .../Remove-MgServicePrincipalByAppId.md | 46 +- ...aimMappingPolicyClaimMappingPolicyByRef.md | 50 +- ...ncipalDelegatedPermissionClassification.md | 50 +- .../Remove-MgServicePrincipalEndpoint.md | 44 +- ...veryPolicyHomeRealmDiscoveryPolicyByRef.md | 50 +- .../Remove-MgServicePrincipalKey.md | 58 +-- ...rvicePrincipalOwnerDirectoryObjectByRef.md | 50 +- .../Remove-MgServicePrincipalPassword.md | 55 +- ...cipalRemoteDesktopSecurityConfiguration.md | 50 +- ...SecurityConfigurationApprovedClientApp.md} | 108 ++-- ...pSecurityConfigurationTargetDeviceGroup.md | 50 +- ...emove-MgServicePrincipalSynchronization.md | 44 +- ...ve-MgServicePrincipalSynchronizationJob.md | 50 +- ...cePrincipalSynchronizationJobBulkUpload.md | 44 +- ...ipalSynchronizationJobBulkUploadContent.md | 44 +- ...ervicePrincipalSynchronizationJobSchema.md | 48 +- ...ncipalSynchronizationJobSchemaDirectory.md | 44 +- ...ServicePrincipalSynchronizationTemplate.md | 44 +- ...ePrincipalSynchronizationTemplateSchema.md | 44 +- ...lSynchronizationTemplateSchemaDirectory.md | 44 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 44 +- ...nIssuancePolicyTokenIssuancePolicyByRef.md | 44 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 46 +- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 50 +- .../Remove-MgUserAppRoleAssignment.md | 50 +- ...Restart-MgApplicationSynchronizationJob.md | 54 +- ...rt-MgServicePrincipalSynchronizationJob.md | 58 +-- .../Set-MgApplicationLogo.md | 50 +- .../Set-MgApplicationSynchronization.md | 50 +- ...tionSynchronizationJobBulkUploadContent.md | 46 +- .../Set-MgApplicationSynchronizationSecret.md | 54 +- .../Set-MgApplicationVerifiedPublisher.md | 50 +- .../Set-MgServicePrincipalSynchronization.md | 50 +- ...ipalSynchronizationJobBulkUploadContent.md | 46 +- ...MgServicePrincipalSynchronizationSecret.md | 60 +-- .../Start-MgApplicationSynchronizationJob.md | 46 +- ...rt-MgServicePrincipalSynchronizationJob.md | 50 +- ...Suspend-MgApplicationSynchronizationJob.md | 46 +- ...nd-MgServicePrincipalSynchronizationJob.md | 50 +- .../Test-MgApplicationProperty.md | 68 +-- ...ApplicationSynchronizationJobCredential.md | 60 +-- .../Test-MgServicePrincipalProperty.md | 68 +-- ...cePrincipalSynchronizationJobCredential.md | 64 +-- .../Update-MgApplication.md | 159 +++--- .../Update-MgApplicationByAppId.md | 155 +++--- .../Update-MgApplicationByUniqueName.md | 158 +++--- .../Update-MgApplicationExtensionProperty.md | 52 +- ...gApplicationFederatedIdentityCredential.md | 58 +-- ...cationFederatedIdentityCredentialByName.md | 54 +- .../Update-MgApplicationSynchronizationJob.md | 58 +-- ...ApplicationSynchronizationJobBulkUpload.md | 48 +- ...e-MgApplicationSynchronizationJobSchema.md | 52 +- ...cationSynchronizationJobSchemaDirectory.md | 52 +- ...te-MgApplicationSynchronizationTemplate.md | 57 +-- ...pplicationSynchronizationTemplateSchema.md | 51 +- ...nSynchronizationTemplateSchemaDirectory.md | 52 +- .../Update-MgGroupAppRoleAssignment.md | 50 +- .../Update-MgServicePrincipal.md | 136 ++--- ...ate-MgServicePrincipalAppRoleAssignedTo.md | 50 +- ...ate-MgServicePrincipalAppRoleAssignment.md | 50 +- .../Update-MgServicePrincipalByAppId.md | 134 ++--- ...ncipalDelegatedPermissionClassification.md | 50 +- .../Update-MgServicePrincipalEndpoint.md | 60 +-- ...cipalRemoteDesktopSecurityConfiguration.md | 56 +- ...SecurityConfigurationApprovedClientApp.md} | 266 ++++++---- ...pSecurityConfigurationTargetDeviceGroup.md | 57 +-- ...te-MgServicePrincipalSynchronizationJob.md | 61 +-- ...cePrincipalSynchronizationJobBulkUpload.md | 48 +- ...ervicePrincipalSynchronizationJobSchema.md | 53 +- ...ncipalSynchronizationJobSchemaDirectory.md | 52 +- ...ServicePrincipalSynchronizationTemplate.md | 51 +- ...ePrincipalSynchronizationTemplateSchema.md | 51 +- ...lSynchronizationTemplateSchemaDirectory.md | 52 +- .../Update-MgUserAppRoleAssignment.md | 50 +- 313 files changed, 4997 insertions(+), 13274 deletions(-) rename microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/{Remove-MgServicePrincipalClaimMappingPolicyByRef.md => Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md} (63%) rename microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/{Remove-MgApplicationOwnerByRef.md => Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md} (67%) rename microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/{Remove-MgServicePrincipalOwnerByRef.md => New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md} (64%) delete mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md delete mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md rename microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/{Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md => Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md} (82%) rename microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/{Remove-MgApplicationTokenLifetimePolicyByRef.md => Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md} (61%) 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..212fac2a6850c 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 --- @@ -19,9 +19,6 @@ As part of the request validation for this method, a proof of possession of an e Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead. -> [!NOTE] -> To view the beta release of this cmdlet, view [Add-MgBetaApplicationKey](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaApplicationKey?view=graph-powershell-beta) - ## SYNTAX ### AddExpanded (Default) @@ -32,7 +29,7 @@ Add-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -43,7 +40,6 @@ Add-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -54,7 +50,7 @@ Add-MgApplicationKey -InputObject [-ResponseHeadersVaria [-PasswordCredential ] [-Proof ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -65,7 +61,6 @@ Add-MgApplicationKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,18 +76,9 @@ As part of the request validation for this method, a proof of possession of an e Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Add a new key credential to an application -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -108,12 +94,7 @@ $params = @{ Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params -``` -This example will add a new key credential to an application - -### Example 2: Add a key credential and an associated password for the key - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Applications @@ -131,10 +112,6 @@ $params = @{ Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params -``` -This example will add a key credential and an associated password for the key - - ## PARAMETERS ### -AdditionalProperties @@ -194,7 +171,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -410,8 +387,9 @@ AcceptedValues: [] HelpMessage: '' ``` +### -Proof - +. ```yaml Type: System.String @@ -577,7 +555,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyCredential ]: keyCredential [(Any) ]: This indicates any property can be added to this object. @@ -619,7 +597,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. [Proof ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -646,7 +624,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -KEYCREDENTIAL ``: keyCredential +KEYCREDENTIAL : keyCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: A 40-character binary type that can be used to identify the credential. Optional. @@ -667,7 +645,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -PASSWORDCREDENTIAL ``: passwordCredential +PASSWORDCREDENTIAL : passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -689,27 +667,5 @@ Optional. ## RELATED LINKS -- [Add-MgApplicationKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey) +- [](https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0) 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..1ca4467cfd012 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 --- @@ -16,9 +16,6 @@ title: Add-MgApplicationPassword Adds a strong password or secret to an application. You can also add passwords while creating the application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Add-MgBetaApplicationPassword](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaApplicationPassword?view=graph-powershell-beta) - ## SYNTAX ### AddExpanded (Default) @@ -28,7 +25,7 @@ Add-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -39,7 +36,6 @@ Add-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -49,7 +45,7 @@ Add-MgApplicationPassword -InputObject [-ResponseHeaders [-AdditionalProperties ] [-PasswordCredential ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -60,7 +56,6 @@ Add-MgApplicationPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Adds a strong password or secret to an application. You can also add passwords while creating the application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Add a password credential to an application with a six month expiry -```powershell +### EXAMPLE 1 Connect-MgGraph -Scopes 'Application.ReadWrite.All' @@ -107,13 +93,8 @@ SecretText : StartDateTime : 26/5/2022 1:03:31 pm AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]} -``` -Add a password to an application that expires in six months from the current date. - -### Example 2: Add a password credential to an application with a start date - -```powershell +### EXAMPLE 2 Connect-MgGraph -Scopes 'Application.ReadWrite.All' @@ -140,11 +121,6 @@ SecretText : StartDateTime : 26/5/2022 2:00:00 pm AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]} -``` - -Add a password to an application that becomes valid at 12:00 am the next day and is valid for six months. - -Use `$secret.StartDateTime.ToLocalTime()` to convert the returned dates from UTC to the local timezone. ## PARAMETERS @@ -205,7 +181,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -534,7 +510,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PasswordCredential ]: passwordCredential [(Any) ]: This indicates any property can be added to this object. @@ -555,7 +531,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -582,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -PASSWORDCREDENTIAL ``: passwordCredential +PASSWORDCREDENTIAL : passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -604,27 +580,5 @@ Optional. ## RELATED LINKS -- [Add-MgApplicationPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword) +- [](https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0) 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..9f4125c4df45d 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 @@ -78,18 +76,9 @@ As part of the request validation for this method, a proof of possession of an e ServicePrincipals that don't have any existing valid certificates (i.e.: no certificates have been added yet, or all certificates have expired), won't be able to use this service action. Update servicePrincipal can be used to perform an update instead. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Adding a new key credential to a servicePrincipal -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -105,12 +94,7 @@ $params = @{ Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows adding a new key credential to a serviceprincipal - -### Example 2: Adding a key credential and an associated password for the key - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Applications @@ -128,10 +112,6 @@ $params = @{ Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows adding a key credential and an associated password for the key - - ## PARAMETERS ### -AdditionalProperties @@ -163,7 +143,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -379,8 +359,9 @@ AcceptedValues: [] HelpMessage: '' ``` +### -Proof - +. ```yaml Type: System.String @@ -573,7 +554,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyCredential ]: keyCredential [(Any) ]: This indicates any property can be added to this object. @@ -615,7 +596,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. [Proof ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -642,7 +623,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -KEYCREDENTIAL ``: keyCredential +KEYCREDENTIAL : keyCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: A 40-character binary type that can be used to identify the credential. Optional. @@ -663,7 +644,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -PASSWORDCREDENTIAL ``: passwordCredential +PASSWORDCREDENTIAL : passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -685,27 +666,5 @@ Optional. ## RELATED LINKS -- [Add-MgServicePrincipalKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0) 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..4e3aa719f1018 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 @@ -69,18 +66,9 @@ This cmdlet has the following aliases, Add a strong password or secret to a servicePrincipal object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -92,10 +80,6 @@ $params = @{ Add-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Add-MgServicePrincipalPassword Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -127,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -483,7 +467,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PasswordCredential ]: passwordCredential [(Any) ]: This indicates any property can be added to this object. @@ -504,7 +488,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -531,7 +515,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -PASSWORDCREDENTIAL ``: passwordCredential +PASSWORDCREDENTIAL : passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -553,27 +537,5 @@ Optional. ## RELATED LINKS -- [Add-MgServicePrincipalPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0) 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..f805ab60e636f 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 --- @@ -14,7 +14,7 @@ title: Add-MgServicePrincipalTokenSigningCertificate ## SYNOPSIS Create a self-signed signing certificate and return a selfSignedCertificate object, which is the public part of the generated certificate. -The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r+ The keyCredentials object with the following objects:\r + A private key object with usage set to Sign.\r + A public key object with usage set to Verify.\r+ The passwordCredentials object. +The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r\n+ The keyCredentials object with the following objects:\r\n + A private key object with usage set to Sign.\r\n + A public key object with usage set to Verify.\r\n+ The passwordCredentials object. All the objects have the same value of customKeyIdentifier. The passwordCredential is used to open the PFX file (private key). It and the associated private key object have the same value of keyId. @@ -22,9 +22,6 @@ When set during creation through the displayName property, the subject of the ce The startDateTime is set to the same time the certificate is created using the action. The endDateTime can be up to three years after the certificate is created. -> [!NOTE] -> To view the beta release of this cmdlet, view [Add-MgBetaServicePrincipalTokenSigningCertificate](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaServicePrincipalTokenSigningCertificate?view=graph-powershell-beta) - ## SYNTAX ### AddExpanded (Default) @@ -34,7 +31,7 @@ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-DisplayName ] [-EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Add @@ -45,7 +42,6 @@ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -55,7 +51,7 @@ Add-MgServicePrincipalTokenSigningCertificate -InputObject ] [-AdditionalProperties ] [-DisplayName ] [-EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -66,7 +62,6 @@ Add-MgServicePrincipalTokenSigningCertificate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,7 +72,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a self-signed signing certificate and return a selfSignedCertificate object, which is the public part of the generated certificate. -The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r+ The keyCredentials object with the following objects:\r + A private key object with usage set to Sign.\r + A public key object with usage set to Verify.\r+ The passwordCredentials object. +The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r\n+ The keyCredentials object with the following objects:\r\n + A private key object with usage set to Sign.\r\n + A public key object with usage set to Verify.\r\n+ The passwordCredentials object. All the objects have the same value of customKeyIdentifier. The passwordCredential is used to open the PFX file (private key). It and the associated private key object have the same value of keyId. @@ -85,18 +80,9 @@ When set during creation through the displayName property, the subject of the ce The startDateTime is set to the same time the certificate is created using the action. The endDateTime can be up to three years after the certificate is created. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -107,10 +93,6 @@ $params = @{ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Add-MgServicePrincipalTokenSigningCertificate Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -142,7 +124,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -213,7 +195,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -240,7 +222,7 @@ HelpMessage: '' ### -EndDateTime - +. ```yaml Type: System.DateTime @@ -524,12 +506,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EndDateTime ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -559,27 +541,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Add-MgServicePrincipalTokenSigningCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0) 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..d59b8548b3c4a 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 --- @@ -16,9 +16,6 @@ title: Clear-MgApplicationVerifiedPublisher Unset the verifiedPublisher previously set on an agentIdentityBlueprint, removing all verified publisher properties. For more information, see Publisher verification. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaApplicationVerifiedPublisher](/powershell/module/Microsoft.Graph.Beta.Applications/Clear-MgBetaApplicationVerifiedPublisher?view=graph-powershell-beta) - ## SYNTAX ### Unset (Default) @@ -28,7 +25,6 @@ Clear-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnsetViaIdentity @@ -38,7 +34,6 @@ Clear-MgApplicationVerifiedPublisher -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +47,13 @@ Unset the verifiedPublisher previously set on an agentIdentityBlueprint, removin For more information, see Publisher verification. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId -``` -This example shows how to use the Clear-MgApplicationVerifiedPublisher Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -374,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -404,27 +394,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgApplicationVerifiedPublisher](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher) -- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-unsetverifiedpublisher?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher) +- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-unsetverifiedpublisher?view=graph-rest-1.0) 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..d8730af3b7278 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 --- @@ -14,14 +14,11 @@ title: Confirm-MgApplicationMemberGroup ## SYNOPSIS Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. -> [!NOTE] -> To view the beta release of this cmdlet, view [Confirm-MgBetaApplicationMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaApplicationMemberGroup?view=graph-powershell-beta) - ## SYNTAX ### CheckExpanded (Default) @@ -31,7 +28,6 @@ Confirm-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariab [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Check @@ -42,7 +38,6 @@ Confirm-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -52,7 +47,7 @@ Confirm-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -63,7 +58,6 @@ Confirm-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,11 +68,21 @@ This cmdlet has the following aliases, ## DESCRIPTION Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -138,7 +142,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -209,7 +213,7 @@ HelpMessage: '' ### -GroupIds - +. ```yaml Type: System.String[] @@ -466,11 +470,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [GroupIds ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -500,28 +504,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Confirm-MgApplicationMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup) +- [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) 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..256f052a6305f 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 --- @@ -15,9 +15,6 @@ title: Confirm-MgApplicationMemberObject Invoke action checkMemberObjects -> [!NOTE] -> To view the beta release of this cmdlet, view [Confirm-MgBetaApplicationMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaApplicationMemberObject?view=graph-powershell-beta) - ## SYNTAX ### CheckExpanded (Default) @@ -27,7 +24,6 @@ Confirm-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVaria [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Check @@ -38,7 +34,6 @@ Confirm-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -48,7 +43,7 @@ Confirm-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -59,7 +54,6 @@ Confirm-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Invoke action checkMemberObjects +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -130,7 +134,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -264,7 +268,7 @@ HelpMessage: '' ### -Ids - +. ```yaml Type: System.String[] @@ -458,11 +462,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Ids ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -492,27 +496,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Confirm-MgApplicationMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject) 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..fe2ea15c8d413 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 --- @@ -14,14 +14,11 @@ title: Confirm-MgServicePrincipalMemberGroup ## SYNOPSIS Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. -> [!NOTE] -> To view the beta release of this cmdlet, view [Confirm-MgBetaServicePrincipalMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaServicePrincipalMemberGroup?view=graph-powershell-beta) - ## SYNTAX ### CheckExpanded (Default) @@ -31,7 +28,7 @@ Confirm-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Check @@ -42,7 +39,6 @@ Confirm-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -52,7 +48,7 @@ Confirm-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-GroupIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -63,7 +59,6 @@ Confirm-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +69,20 @@ This cmdlet has the following aliases, ## DESCRIPTION Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (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, | +{{ Add code here }} ## PARAMETERS @@ -118,7 +115,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -189,7 +186,7 @@ HelpMessage: '' ### -GroupIds - +. ```yaml Type: System.String[] @@ -473,11 +470,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [GroupIds ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -507,28 +504,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Confirm-MgServicePrincipalMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup) +- [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) 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..d232cbb1f6852 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 --- @@ -15,9 +15,6 @@ title: Confirm-MgServicePrincipalMemberObject Invoke action checkMemberObjects -> [!NOTE] -> To view the beta release of this cmdlet, view [Confirm-MgBetaServicePrincipalMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaServicePrincipalMemberObject?view=graph-powershell-beta) - ## SYNTAX ### CheckExpanded (Default) @@ -27,7 +24,7 @@ Confirm-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Check @@ -38,7 +35,6 @@ Confirm-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CheckViaIdentityExpanded @@ -48,7 +44,7 @@ Confirm-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CheckViaIdentity @@ -59,7 +55,6 @@ Confirm-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,13 +66,15 @@ This cmdlet has the following aliases, Invoke action checkMemberObjects -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (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, | +{{ Add code here }} ## PARAMETERS @@ -110,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -244,7 +241,7 @@ HelpMessage: '' ### -Ids - +. ```yaml Type: System.String[] @@ -465,11 +462,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Ids ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -499,27 +496,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Confirm-MgServicePrincipalMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject) 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..3211ca0017e71 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 --- @@ -15,9 +15,6 @@ title: Find-MgApplicationSynchronizationJobSchemaDirectory Discover the latest schema definition for provisioning to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Find-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Discover (Default) @@ -27,7 +24,7 @@ Find-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationJobId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### DiscoverViaIdentity @@ -37,7 +34,6 @@ Find-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +45,16 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -380,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -410,28 +416,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Find-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory) +- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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..596b884cbd1ae 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 --- @@ -15,9 +15,6 @@ title: Find-MgApplicationSynchronizationTemplateSchemaDirectory Discover the latest schema definition for provisioning to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Discover (Default) @@ -28,7 +25,6 @@ Find-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DiscoverViaIdentity @@ -38,7 +34,6 @@ Find-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -411,28 +416,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Find-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory) +- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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..76835122dfb25 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 --- @@ -15,9 +15,6 @@ title: Find-MgServicePrincipalSynchronizationJobSchemaDirectory Discover the latest schema definition for provisioning to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Discover (Default) @@ -27,7 +24,7 @@ Find-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionId -ServicePrincipalId -SynchronizationJobId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### DiscoverViaIdentity @@ -37,7 +34,6 @@ Find-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +45,14 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Find-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -DirectoryDefinitionId $directoryDefinitionId -``` -This example shows how to use the Find-MgServicePrincipalSynchronizationJobSchemaDirectory Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -430,27 +413,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Find-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory) +- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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..8e9fd0ba7bd56 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 --- @@ -15,9 +15,6 @@ title: Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory Discover the latest schema definition for provisioning to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Discover (Default) @@ -28,7 +25,6 @@ Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefiniti [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DiscoverViaIdentity @@ -38,7 +34,6 @@ Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -380,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -410,28 +415,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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..4e3355f20d745 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplication Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplication?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgApplication [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplication [-ExpandProperty ] [-Property ] [-Filter < Get-MgApplication -ApplicationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgApplication -ApplicationId [-ExpandProperty ] [-Propert Get-MgApplication -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,18 +57,10 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. -**Permissions** - -| 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, Application.ReadWrite.All, | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprint.Read.All, | - ## EXAMPLES -### Example 1: Get a list of applications -```powershell +### EXAMPLE 1 + Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -81,17 +70,9 @@ DisplayName : Test App AppId : 39b09640-ec3e-44c9-b3de-f52db4e1cf66 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : Contoso.com -``` - -This example gets a list of all the applications. -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). +### EXAMPLE 2 -To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. - -### Example 2: Get an application by Id - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -Filter "AppId eq '39b09640-ec3e-44c9-b3de-f52db4e1cf66'" | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -100,17 +81,9 @@ DisplayName : Test App AppId : 39b09640-ec3e-44c9-b3de-f52db4e1cf66 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : Contoso.com -``` - -This example gets the application by the specified Id. - -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). - -To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. -### Example 3: Get a count of all applications +### EXAMPLE 3 -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount @@ -121,17 +94,9 @@ bce20771-2a69-41e5-a0dd-125ac2fa2708 Example 3 App ffdf268a-2fe2-49e1-8cd7- dcaa0c3a-8dfa-4b47-bc04-0edbab42043a Principal-Test App bd38ad43-6c46-4cc6-b65c-a0db533a2a6f AzureADMyOrg Contoso.com f6b30057-7095-4e2c-89f8-224149f591b7 Testing App 00e80963-9bc0-4147-b9e0-2ba56093e7e6 AzureADandPersonalMicrosoftAccount Contoso.com fe4caed6-6182-4aca-b70b-b114c5334a8a New app 641992e9-d176-4aff-a3b6-a867b3ba48c4 AzureADandPersonalMicrosoftAccount Contoso.com -``` - -This example gets a list of all applications. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). - -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). -To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. +### EXAMPLE 4 -### Example 4: Use -Search to get all the applications whose display name contains 'Test' including a count of the returned applications - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount -Search '"DisplayName:Test"' @@ -139,17 +104,9 @@ Id DisplayName AppId -- ----------- ----- -------------- --------------- dcaa0c3a-8dfa-4b47-bc04-0edbab42043a Principal-Test App bd38ad43-6c46-4cc6-b65c-a0db533a2a6f AzureADMyOrg Contoso.com f6b30057-7095-4e2c-89f8-224149f591b7 Testing App 00e80963-9bc0-4147-b9e0-2ba56093e7e6 AzureADandPersonalMicrosoftAccount Contoso.com -``` - -This example returns all applications whose display name contains 'Test'. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). +### EXAMPLE 5 -To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. - -### Example 5: Use -Filter to get all the applications with a display name that starts with 'New' including a count of the returned applications, with the results ordered by display name - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount -Filter "startsWith(DisplayName, 'New')" -OrderBy DisplayName @@ -157,13 +114,6 @@ Id DisplayName AppId -- ----------- ----- -------------- --------------- fe4caed6-6182-4aca-b70b-b114c5334a8a New app 641992e9-d176-4aff-a3b6-a867b3ba48c4 AzureADandPersonalMicrosoftAccount Contoso.com 0672d487-4c0c-475a-bf22-0e714f015597 New apps ced14895-14ac-4dcf-8b93-0779f60c000d AzureADandPersonalMicrosoftAccount Contoso.com -``` - -This example returns all applications whose display name starts with 'New'. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). - -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). - -To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. ## PARAMETERS @@ -648,7 +598,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -678,28 +628,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication) +- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0) 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..7a401d15aa52a 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationAppManagementPolicy The appManagementPolicy applied to this application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationAppManagementPolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -472,27 +479,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationAppManagementPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy) 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..cab99321493e7 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationAppManagementPolicyByRef The appManagementPolicy applied to this application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationAppManagementPolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -428,27 +435,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref) 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..490029e954f8c 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationAppManagementPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationAppManagementPolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationAppManagementPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount) 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..c66950d8a2e49 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationByAppId Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationByAppId?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,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 +33,7 @@ Get-MgApplicationByAppId -AppId [-ExpandProperty ] [-Property Get-MgApplicationByAppId -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,26 +46,13 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. -**Permissions** - -| 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, | - ## EXAMPLES -### Example 1: Retrieve an application by its appId and only specific properties -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications -Get-MgApplicationByAppId -Property "id,appId,displayName,requiredResourceAccess" - -``` -This example will retrieve an application by its appid and only specific properties - +Get-MgApplicationByAppId -Property "id,appId,displayName,requiredResourceAccess" ## PARAMETERS @@ -358,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +372,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid) +- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) 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..0052e15a28542 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 --- @@ -17,9 +17,6 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationById](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationById?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgApplicationById [-ResponseHeadersVariable ] [-AdditionalProperties [-Ids ] [-Types ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +36,6 @@ Get-MgApplicationById [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,6 +49,16 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -79,7 +84,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +212,7 @@ HelpMessage: '' ### -Ids - +. ```yaml Type: System.String[] @@ -313,7 +318,7 @@ HelpMessage: '' ### -Types - +. ```yaml Type: System.String[] @@ -384,7 +389,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Ids ]: [Types ]: @@ -392,28 +397,5 @@ BODYPARAMETER ` [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationByUniqueName?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,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 +33,7 @@ Get-MgApplicationByUniqueName -UniqueName [-ExpandProperty ] Get-MgApplicationByUniqueName -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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, | +{{ Add code here }} ## PARAMETERS @@ -345,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -375,28 +374,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename) +- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) 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..39e109f574556 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgApplicationCount -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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, | +{{ Add code here }} ## PARAMETERS @@ -304,27 +303,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount) 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..5df2771a6a4e7 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationCreatedOnBehalfOf Supports $filter (/$count eq 0, /$count ne 0). Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationCreatedOnBehalfOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationCreatedOnBehalfOf?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgApplicationCreatedOnBehalfOf -ApplicationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgApplicationCreatedOnBehalfOf -ApplicationId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Supports $filter (/$count eq 0, /$count ne 0). Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -338,7 +345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -368,27 +375,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationCreatedOnBehalfOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof) 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..f2d844c78cef1 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationDelta Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationDelta](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,7 @@ Get-MgApplicationDelta [-ExpandProperty ] [-Filter ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,27 +39,14 @@ This cmdlet has the following aliases, Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationDelta -``` -This example shows how to use the Get-MgApplicationDelta Cmdlet. - - ## PARAMETERS ### -All @@ -473,27 +457,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta) +- [](https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0) 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..ddaf602c57201 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationExtensionProperty Read a directory extension definition represented by an extensionProperty object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationExtensionProperty -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplicationExtensionProperty -ApplicationId -ExtensionPropertyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgApplicationExtensionProperty -ApplicationId -ExtensionPropertyId Get-MgApplicationExtensionProperty -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Read a directory extension definition represented by an extensionProperty object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Directory.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, | -| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId -``` -This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. - - ## PARAMETERS ### -All @@ -568,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -598,28 +582,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty) -- [Graph API Reference](https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty) +- [](https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0) 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..d1ac5b80d630e 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationExtensionPropertyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationExtensionPropertyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationExtensionPropertyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationExtensionPropertyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (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, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationExtensionPropertyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount) 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..87cf671840d5d 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationFederatedIdentityCredential Read the properties and relationships of a federatedIdentityCredential object assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationFederatedIdentityCredential -ApplicationId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplicationFederatedIdentityCredential -ApplicationId -FederatedIdentityCredentialId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgApplicationFederatedIdentityCredential -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a federatedIdentityCredential object assigned to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example: List federated identity credentials for an application -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -``` -This example will### example: list federated identity credentials for an application - - ## PARAMETERS ### -All @@ -569,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -599,28 +583,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0) 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..d639a57d0ee9c 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationFederatedIdentityCredentialByName Read the properties and relationships of a federatedIdentityCredential object assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationFederatedIdentityCredentialByName -ApplicationId -Name [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Read the properties and relationships of a federatedIdentityCredential object assigned to an application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -367,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -397,28 +396,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) 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..03b2b53117f66 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationFederatedIdentityCredentialCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredentialCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredentialCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgApplicationFederatedIdentityCredentialCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationFederatedIdentityCredentialCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount) 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..aff0f749c6a66 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationHomeRealmDiscoveryPolicy Get homeRealmDiscoveryPolicies from applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationHomeRealmDiscoveryPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationHomeRealmDiscoveryPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -ApplicationId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -ApplicationId -HomeRealmDiscoveryPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicy -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get homeRealmDiscoveryPolicies from applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,28 +585,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationHomeRealmDiscoveryPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy) 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..0ef144ab4f60c 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationHomeRealmDiscoveryPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgApplicationHomeRealmDiscoveryPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationHomeRealmDiscoveryPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount) 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..48e0b3fa1bd19 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationLogo The main logo for the application. Not nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationLogo?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Not nullable. Get-MgApplicationLogo -ApplicationId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgApplicationLogo -ApplicationId -OutFile [-ResponseHeader Get-MgApplicationLogo -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -336,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -366,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo) 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..4064408ac5551 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 --- @@ -19,9 +19,6 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationMemberGroup?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -31,7 +28,6 @@ Get-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable < [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -42,7 +38,6 @@ Get-MgApplicationMemberGroup -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +47,7 @@ Get-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -63,7 +58,6 @@ Get-MgApplicationMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +73,16 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -138,7 +142,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -385,7 +389,7 @@ HelpMessage: '' ### -SecurityEnabledOnly - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -466,11 +470,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -500,28 +504,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup) +- [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) 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..3a25ef063af8a 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 --- @@ -13,12 +13,9 @@ title: Get-MgApplicationMemberObject ## SYNOPSIS -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationMemberObject?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -28,7 +25,6 @@ Get-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +35,6 @@ Get-MgApplicationMemberObject -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -49,7 +44,7 @@ Get-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -60,7 +55,6 @@ Get-MgApplicationMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -70,9 +64,19 @@ This cmdlet has the following aliases, ## DESCRIPTION -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -132,7 +136,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -379,7 +383,7 @@ HelpMessage: '' ### -SecurityEnabledOnly - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -460,11 +464,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -494,28 +498,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject) +- [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) 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..62f0649a51e78 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwner Retrieve a list of owners for an application that are directoryObject types. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwner](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwner?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationOwner -ApplicationId [-ExpandProperty ] [-Fi [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,27 +37,14 @@ This cmdlet has the following aliases, Retrieve a list of owners for an application that are directoryObject types. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationOwner -ApplicationId $applicationId -``` -This example shows how to use the Get-MgApplicationOwner Cmdlet. - - ## PARAMETERS ### -All @@ -515,27 +499,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationOwner](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner) +- [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) 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..de48b8912bda7 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgApplicationOwnerAsAppRoleAssignment -ApplicationId [-ExpandProper [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgApplicationOwnerAsAppRoleAssignment -ApplicationId -DirectoryObje [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgApplicationOwnerAsAppRoleAssignment -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -571,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment) 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..630c8f6a42ac9 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgApplicationOwnerAsEndpoint -ApplicationId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgApplicationOwnerAsEndpoint -ApplicationId -DirectoryObjectId ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgApplicationOwnerAsEndpoint -InputObject [-ExpandPr [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -571,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint) 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..25c5bd5590200 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgApplicationOwnerAsServicePrincipal -ApplicationId [-ExpandPropert [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgApplicationOwnerAsServicePrincipal -ApplicationId -DirectoryObjec [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgApplicationOwnerAsServicePrincipal -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -571,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal) 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..d698f33f418ab 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerAsUser Get the item of type microsoft.graph.directoryObject as microsoft.graph.user -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsUser?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgApplicationOwnerAsUser -ApplicationId [-ExpandProperty [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgApplicationOwnerAsUser -ApplicationId -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgApplicationOwnerAsUser -InputObject [-ExpandProper [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.user +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -571,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser) 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..d321c98f9908d 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerByRef Retrieve a list of owners for an application that are directoryObject types. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationOwnerByRef -ApplicationId [-Filter ] [-Search [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,13 +37,15 @@ This cmdlet has the following aliases, Retrieve a list of owners for an application that are directoryObject types. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -458,28 +457,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref) +- [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) 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..38232bf3e5fda 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgApplicationOwnerCount -InputObject -ConsistencyLev [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -365,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount) 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..532614298f020 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerCountAsAppRoleAssignment Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationOwnerCountAsAppRoleAssignment -ApplicationId -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationOwnerCountAsAppRoleAssignment -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment) 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..99e247d7d33ae 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerCountAsEndpoint Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationOwnerCountAsEndpoint -ApplicationId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationOwnerCountAsEndpoint -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint) 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..0325eaf56f8f6 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerCountAsServicePrincipal Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationOwnerCountAsServicePrincipal -ApplicationId -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationOwnerCountAsServicePrincipal -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal) 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..3f651be023686 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationOwnerCountAsUser Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsUser?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationOwnerCountAsUser -ApplicationId -ConsistencyLevel ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationOwnerCountAsUser -InputObject -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationOwnerCountAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser) 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..649249eba520d 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronization Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronization?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationSynchronization -ApplicationId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -336,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -366,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization) 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..b3efec59c2418 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationAccessToken Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationAccessToken](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationAccessToken?view=graph-powershell-beta) - ## SYNTAX ### AcquireExpanded (Default) @@ -29,7 +26,6 @@ Get-MgApplicationSynchronizationAccessToken -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Acquire @@ -40,7 +36,6 @@ Get-MgApplicationSynchronizationAccessToken -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentityExpanded @@ -52,7 +47,6 @@ Get-MgApplicationSynchronizationAccessToken -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentity @@ -63,7 +57,6 @@ Get-MgApplicationSynchronizationAccessToken -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -100,10 +84,6 @@ $params = @{ Get-MgApplicationSynchronizationAccessToken -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the Get-MgApplicationSynchronizationAccessToken Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -163,7 +143,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -234,7 +214,7 @@ HelpMessage: '' ### -Credentials - +. To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -513,7 +493,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Credentials ]: [Key ]: synchronizationSecret @@ -523,7 +503,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -553,27 +533,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationAccessToken](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) 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..5208391c57b98 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJob Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationSynchronizationJob -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJobI [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgApplicationSynchronizationJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +585,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob) 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..ebb0bf0c59742 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobBulkUpload The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationJobBulkUpload -ApplicationId -Synchroni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -359,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -389,27 +396,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload) 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..7951e99588f2d 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId -SynchronizationJobId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId Get-MgApplicationSynchronizationJobBulkUploadContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -356,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -386,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent) 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..f4a8ffe25375a 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationSynchronizationJobCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount) 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..6d57d5aa9bf1d 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobSchema The synchronization schema configured for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationJobSchema -ApplicationId -Synchronizati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationSynchronizationJobSchema -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The synchronization schema configured for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -359,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -389,27 +396,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema) 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..b84a9ab3a4db8 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobSchemaDirectory Contains the collection of directories and all of their objects. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -576,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -606,27 +613,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory) 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..913ccb3a2d77c 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationJobSchemaDirectoryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectoryCount -ApplicationId -SynchronizationJobId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationSynchronizationJobSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationJobSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount) 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..3f1a454700db1 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationSecretCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationSecretCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationSecretCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationSynchronizationSecretCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationSecretCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount) 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..524a8aec3797e 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationTemplate Preconfigured synchronization settings for a particular application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationSynchronizationTemplate -ApplicationId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgApplicationSynchronizationTemplate -ApplicationId -Synchronizatio [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgApplicationSynchronizationTemplate -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,13 +57,15 @@ This cmdlet has the following aliases, Preconfigured synchronization settings for a particular application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -556,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,27 +585,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate) 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..c7d99aeb629c3 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationTemplateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgApplicationSynchronizationTemplateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount) 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..9c8abe2e70542 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationTemplateSchema Default synchronization schema for the jobs based on this template. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationTemplateSchema -ApplicationId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationSynchronizationTemplateSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Default synchronization schema for the jobs based on this template. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -367,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -397,27 +396,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema) 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..451d6ad9f86a1 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationTemplateSchemaDirectory Contains the collection of directories and all of their objects. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId -DirectoryDefinitionId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -576,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -606,27 +613,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory) 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..e08b6d17e920a 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount -ApplicationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount) 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..ef4ad2ebedb22 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,9 +14,7 @@ title: Get-MgApplicationTemplate ## SYNOPSIS Retrieve the properties of an applicationTemplate object. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTemplate?view=graph-powershell-beta) +Details about optional risk properties such as riskScore and riskFactors are available with either the Microsoft Entra Suite or Microsoft Entra Internet Access license. ## SYNTAX @@ -28,7 +26,7 @@ Get-MgApplicationTemplate [-ExpandProperty ] [-Property ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +35,7 @@ Get-MgApplicationTemplate [-ExpandProperty ] [-Property ] [- Get-MgApplicationTemplate -ApplicationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +44,7 @@ Get-MgApplicationTemplate -ApplicationTemplateId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -57,19 +55,21 @@ 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 -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications -Get-MgApplicationTemplate +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId -``` -This example shows how to use the Get-MgApplicationTemplate Cmdlet. +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId -Property "id,displayName,riskScore,riskFactors" ## PARAMETERS @@ -531,7 +531,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -561,28 +561,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate) -- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate) +- [](https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0) 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..c221228c71c97 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationTemplateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTemplateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgApplicationTemplateCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount) 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..a64613c51a0b3 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationTokenIssuancePolicy List the tokenIssuancePolicy objects that are assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationTokenIssuancePolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,27 +37,14 @@ This cmdlet has the following aliases, List the tokenIssuancePolicy objects that are assigned to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId -``` -This example shows how to use the Get-MgApplicationTokenIssuancePolicy Cmdlet. - - ## PARAMETERS ### -All @@ -493,27 +477,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationTokenIssuancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy) +- [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) 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..b6ba17158fcae 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationTokenIssuancePolicyByRef List the tokenIssuancePolicy objects that are assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgApplicationTokenIssuancePolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,13 +37,15 @@ This cmdlet has the following aliases, List the tokenIssuancePolicy objects that are assigned to an application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -436,28 +435,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) 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..042b0b17458aa 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationTokenIssuancePolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationTokenIssuancePolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationTokenIssuancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount) 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..f5859b7497ece 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationTokenLifetimePolicy List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgApplicationTokenLifetimePolicy -ApplicationId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,27 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId -``` -This example shows how to use the Get-MgApplicationTokenLifetimePolicy Cmdlet. - - ## PARAMETERS ### -All @@ -495,27 +479,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationTokenLifetimePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy) +- [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) 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..aca7834fcc3ac 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 --- @@ -16,9 +16,6 @@ title: Get-MgApplicationTokenLifetimePolicyByRef List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgApplicationTokenLifetimePolicyByRef -ApplicationId [-Filter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,13 +39,15 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -438,28 +437,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) 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..a609fd2448739 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 --- @@ -15,9 +15,6 @@ title: Get-MgApplicationTokenLifetimePolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgApplicationTokenLifetimePolicyCount -ApplicationId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgApplicationTokenLifetimePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount) 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..43565d3ff2adf 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 --- @@ -16,9 +16,6 @@ title: Get-MgGroupAppRoleAssignment Represents the app roles granted to a group for an application. Supports $expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgGroupAppRoleAssignment -GroupId [-ExpandProperty ] [-Pr [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgGroupAppRoleAssignment -InputObject [-ExpandProper [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,9 +60,9 @@ Represents the app roles granted to a group for an application. Supports $expand. ## EXAMPLES -### Example 1: Get appRoleAssignments granted to a group -```powershell +### EXAMPLE 1 + Get-MgGroupAppRoleAssignment -GroupId '2692d278-8323-4094-b286-e0ffce5e54a5' | Format-List @@ -79,9 +76,6 @@ PrincipalType : Group ResourceDisplayName : Common Data Service ResourceId : 93af1c70-e87f-45df-8780-8af2d7afd05e AdditionalProperties : {} -``` - -This example get all app role assignments granted to the specified group. ## PARAMETERS @@ -592,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -622,27 +616,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment) +- [](https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0) 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..ee82b22cd9991 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 --- @@ -15,9 +15,6 @@ title: Get-MgGroupAppRoleAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaGroupAppRoleAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgGroupAppRoleAssignmentCount -InputObject -Consiste [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, Directory.ReadWrite.All, AppRoleAssignment.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -364,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount) 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..7fe6267e3ea6d 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 --- @@ -16,9 +16,6 @@ title: Get-MgServicePrincipal Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipal [-ExpandProperty ] [-Property ] [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipal [-ExpandProperty ] [-Property ] [-Fil Get-MgServicePrincipal -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgServicePrincipal -ServicePrincipalId [-ExpandProperty ] Get-MgServicePrincipal -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,18 +57,10 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. -**Permissions** - -| 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 (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, | - ## EXAMPLES -### Example 1: Get all service principals from the directory -```powershell +### EXAMPLE 1 + Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal @@ -84,17 +73,9 @@ Id : 4297089a-3358-4bf5-92b0-a35fbdb2407c DisplayName : Microsoft Forms AppId : 67c93110-694e-4a54-b1af-d6cd2e3b12d7 SignInAudience : AzureADMultipleOrgs -``` - -This example retrieves all service principals from the directory. -To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). +### EXAMPLE 2 -To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. - -### Example 2: Get the service principal by display name - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -Filter "DisplayName eq 'Power BI Service'" | Format-List Id, DisplayName, AppId, SignInAudience @@ -103,17 +84,9 @@ Id : 9518fb8f-8d9e-4aae-be20-d398f9cc59ac DisplayName : Power BI Service AppId : 60dbf324-9702-41cc-a5fa-f8d19804b014 SignInAudience : AzureADMultipleOrgs -``` - -This example gets the service principal by the display name. - -To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). - -To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. -### Example 3: Get a count of the service principals +### EXAMPLE 3 -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount @@ -123,17 +96,9 @@ Id DisplayName 0012ff3e-9c42-47f9-86a9-3a42aadf3d1d OneProfile Service b2cc270f-563e-4d8a-af47-f00963a71dcd AzureADMultipleOrgs Microsoft Services 0045f2ae-41d9-4373-98ac-3306fe51c9cf Dynamics Data Integration 2e49aa60-1bd3-43b6-8ab6-03ada3d9f08b AzureADMultipleOrgs Microsoft Services 020ada9b-60b7-436f-8f00-22b198c2996a O365SBRM Service 9d06afd9-66c9-49a6-b385-ea7509332b0b AzureADMultipleOrgs Microsoft Service -``` - -This example returns a list of all the service principals. $spCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). - -To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). -To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. +### EXAMPLE 4 -### Example 4: Use -Filter and -Top to get five service principals with a display name that starts with 'a' including a count of returned objects - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount -Filter "startsWith(DisplayName, 'a')" -Top 5 @@ -144,17 +109,9 @@ Id DisplayName AppId 0e9adb48-e0aa-4aa5-a787-a79acc91f2ad Azure Multi-Factor Auth Connector 1f5530b3-261a-47a9-b357-ded261e17918 AzureADMultipleOrgs Microsoft Services 1b339d7a-b9ba-4328-ae3c-6f21276628c7 Azure Analysis Services 4ac7d521-0382-477b-b0f8-7e1d95f85ca2 AzureADMultipleOrgs Microsoft Services 1d322ee1-7cf7-442a-b480-d6d4bbe6ec54 App Protection c6e44401-4d0a-4542-ab22-ecd4c90d28d7 AzureADMultipleOrgs Microsoft Services -``` - -This example filters service principals whose display name starts with 'a' and continues to return the top 5. $spCount variable contains the count of the objects in the result before the *Top* filter. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). -To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). +### EXAMPLE 5 -To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. - -### Example 5: Use -Search to get service principals with display names that contain the letters 'Team' including a count of returned objects - -```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount -Search '"DisplayName:Team"' @@ -167,13 +124,6 @@ Id DisplayName 29b512aa-7269-4eea-8a61-5125684183cf Teams Calling Meeting Devices Services 00edd498-7c0c-4e68-859c-5a55d518c9c0 AzureADMultipleOrgs Microsoft Services 32cba72f-3403-4944-ada7-9173c8678247 App Studio for Microsoft Teams e1979c22-8b73-4aed-a4da-572cc4d0b832 AzureADMultipleOrgs Microsoft Services 349be45f-663d-428e-bdab-b4ac26393614 Microsoft Teams AuthSvc a164aee5-7d0a-46bb-9404-37421d58bdf7 AzureADMultipleOrgs Microsoft Services -``` - -This example returns all service principals whose display name contains the word 'team'. $spCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). - -To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). - -To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. ## PARAMETERS @@ -657,7 +607,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -687,28 +637,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0) 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..c22f3b3b4102d 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppManagementPolicy The appManagementPolicy applied to this application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppManagementPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppManagementPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalAppManagementPolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipalAppManagementPolicy -AppManagementPolicyId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgServicePrincipalAppManagementPolicy -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -547,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -577,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppManagementPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy) 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..7ac1ebdeccc3b 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppManagementPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppManagementPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppManagementPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalAppManagementPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppManagementPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount) 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..594a71ecfdbf4 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppRoleAssignedTo Read the properties and relationships of an appRoleAssignment object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId -ServicePr [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgServicePrincipalAppRoleAssignedTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,18 +58,13 @@ This cmdlet has the following aliases, Read the properties and relationships of an appRoleAssignment object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet. - - ## PARAMETERS ### -All @@ -560,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -590,28 +582,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto) -- [Graph API Reference](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto) +- [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0) 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..c3105a440257b 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppRoleAssignedToCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignedToCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignedToCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgServicePrincipalAppRoleAssignedToCount -ServicePrincipalId [-Filt Get-MgServicePrincipalAppRoleAssignedToCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,27 +370,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppRoleAssignedToCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount) 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..f3b6e8dcfec05 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppRoleAssignment Read the properties and relationships of an appRoleAssignment object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId [-ExpandPro [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId -ServicePr [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalAppRoleAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,9 +58,9 @@ This cmdlet has the following aliases, Read the properties and relationships of an appRoleAssignment object. ## EXAMPLES -### Example 1: Get all application role assignments for a service principal -```powershell +### EXAMPLE 1 + Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId '0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61' | Format-List AppRoleId : 00000000-0000-0000-0000-000000000000 @@ -92,9 +88,6 @@ ResourceId : 1c48f923-4fbb-4d37-b772-4d577eefec9e AdditionalProperties : {[@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da-b10d-14f1195d665f/directoryObjects/$/Microsof t.DirectoryServices.ServicePrincipal('0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61')/appRoleAssignments/PRLbC6e4yUyM wr0XutBvYZsr7FiAW3pIqP4F9944yBc]} -``` - -This example gets the application role assignments that have been granted to the specified service principal. ## PARAMETERS @@ -605,7 +598,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -635,28 +628,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment) +- [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0) 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..d2bd57924a81f 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalAppRoleAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalAppRoleAssignmentCount -ServicePrincipalId -Consi [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalAppRoleAssignmentCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -365,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount) 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..6e673e0c4ab18 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 --- @@ -16,9 +16,6 @@ title: Get-MgServicePrincipalByAppId Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,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 +33,7 @@ Get-MgServicePrincipalByAppId -AppId [-ExpandProperty ] [-Pro Get-MgServicePrincipalByAppId -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -345,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -375,28 +374,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) 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..593cc9900e88d 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 --- @@ -17,9 +17,6 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalById](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalById?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalById [-ResponseHeadersVariable ] [-AdditionalPrope [-Ids ] [-Types ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +36,6 @@ Get-MgServicePrincipalById [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,6 +49,16 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -79,7 +84,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +212,7 @@ HelpMessage: '' ### -Ids - +. ```yaml Type: System.String[] @@ -313,7 +318,7 @@ HelpMessage: '' ### -Types - +. ```yaml Type: System.String[] @@ -384,7 +389,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Ids ]: [Types ]: @@ -392,28 +397,5 @@ BODYPARAMETER ` [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,27 +37,14 @@ This cmdlet has the following aliases, List the claimsMappingPolicy objects that are assigned to a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalClaimMappingPolicy Cmdlet. - - ## PARAMETERS ### -All @@ -492,27 +476,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalClaimMappingPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicy) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0) 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..ed4f2c361f404 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalClaimMappingPolicyByRef List the claimsMappingPolicy objects that are assigned to a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,13 +37,15 @@ This cmdlet has the following aliases, List the claimsMappingPolicy objects that are assigned to a servicePrincipal. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -435,28 +434,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0) 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..9d69a27813f10 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalClaimMappingPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalClaimMappingPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalClaimMappingPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount) 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..09ed774e8aa14 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgServicePrincipalCount -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Read.All, AgentIdentity.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -304,27 +303,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount) 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..9d3418d85d805 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 --- @@ -17,9 +17,6 @@ Directory objects created by this service principal. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObject?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgServicePrincipalCreatedObject -ServicePrincipalId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgServicePrincipalCreatedObject -DirectoryObjectId -ServicePrincipa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgServicePrincipalCreatedObject -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,18 +62,13 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalCreatedObject Cmdlet. - - ## PARAMETERS ### -All @@ -564,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -594,27 +586,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalCreatedObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0) 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..2a14cd274b69e 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalCreatedObjectAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalCreatedObjectAsServicePrincipal -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalCreatedObjectAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal) 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..51e8dde4d2295 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalCreatedObjectCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgServicePrincipalCreatedObjectCount -ServicePrincipalId [-Filter < Get-MgServicePrincipalCreatedObjectCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,27 +370,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalCreatedObjectCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount) 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..f7fce6733f43e 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal -ServicePrincipalId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal) 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..13dd233470bb4 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalDelegatedPermissionClassification Get delegatedPermissionClassifications from servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgServicePrincipalDelegatedPermissionClassification [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,18 +59,13 @@ This cmdlet has the following aliases, Get delegatedPermissionClassifications from servicePrincipals ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalDelegatedPermissionClassification Cmdlet. - - ## PARAMETERS ### -All @@ -562,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -592,27 +583,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0) 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..80c0e52775f60 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalDelegatedPermissionClassificationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalDelegatedPermissionClassificationCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalDelegatedPermissionClassificationCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalDelegatedPermissionClassificationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount) 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..55ee40fd6eb78 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 --- @@ -16,9 +16,6 @@ title: Get-MgServicePrincipalDelta Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelta](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalDelta [-ExpandProperty ] [-Filter ] [-Pr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,27 +39,14 @@ This cmdlet has the following aliases, Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, Application.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelta -``` -This example shows how to use the Get-MgServicePrincipalDelta Cmdlet. - - ## PARAMETERS ### -All @@ -473,27 +457,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0) 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..9276e26b0bcef 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalEndpoint Get endpoints from servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalEndpoint -ServicePrincipalId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId Get-MgServicePrincipalEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, Get endpoints from servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -546,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -576,28 +583,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint) 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..a54678553fd6b 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalEndpointCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalEndpointCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalEndpointCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgServicePrincipalEndpointCount -ServicePrincipalId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -333,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -363,27 +370,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalEndpointCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount) 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..6150a282f0a2c 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicy List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -41,27 +37,14 @@ This cmdlet has the following aliases, List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet. - - ## PARAMETERS ### -All @@ -493,27 +476,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalHomeRealmDiscoveryPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) 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..55bebab399350 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,13 +37,15 @@ This cmdlet has the following aliases, List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -435,28 +434,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) 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..f8f4ff6e3590d 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount) 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..b819e86e90015 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 --- @@ -19,9 +19,6 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberGroup?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -31,7 +28,6 @@ Get-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeaders [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -42,7 +38,6 @@ Get-MgServicePrincipalMemberGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +47,7 @@ Get-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -63,7 +58,6 @@ Get-MgServicePrincipalMemberGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,13 +73,15 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (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, | +{{ Add code here }} ## PARAMETERS @@ -118,7 +114,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -365,7 +361,7 @@ HelpMessage: '' ### -SecurityEnabledOnly - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -473,11 +469,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -507,28 +503,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup) +- [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) 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..e0b9923390ce6 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 --- @@ -13,12 +13,9 @@ title: Get-MgServicePrincipalMemberObject ## SYNOPSIS -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberObject?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -28,7 +25,6 @@ Get-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeader [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +35,6 @@ Get-MgServicePrincipalMemberObject -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -49,7 +44,7 @@ Get-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SecurityEnabledOnly] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity @@ -60,7 +55,6 @@ Get-MgServicePrincipalMemberObject -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -70,16 +64,18 @@ This cmdlet has the following aliases, ## DESCRIPTION -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (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, | +{{ Add code here }} ## PARAMETERS @@ -112,7 +108,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -359,7 +355,7 @@ HelpMessage: '' ### -SecurityEnabledOnly - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -467,11 +463,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -501,28 +497,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject) -- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject) +- [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) 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..e6e6a90c11ba9 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 --- @@ -18,9 +18,6 @@ HTTP Methods: GET Read-only. Nullable. Supports $expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOf?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -32,7 +29,6 @@ Get-MgServicePrincipalMemberOf -ServicePrincipalId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -42,7 +38,7 @@ Get-MgServicePrincipalMemberOf -DirectoryObjectId -ServicePrincipalId < [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +48,7 @@ Get-MgServicePrincipalMemberOf -InputObject [-ExpandProp [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -68,18 +64,13 @@ Nullable. Supports $expand. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalMemberOf Cmdlet. - - ## PARAMETERS ### -All @@ -589,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -619,27 +610,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0) 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..c1b77408e8598 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfAsAdministrativeUnit Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalMemberOfAsAdministrativeUnit -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit) 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..1d9ac5856b730 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfAsDirectoryRole Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsDirectoryRole?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalMemberOfAsDirectoryRole -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole) 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..5d2775654c012 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalMemberOfAsGroup -ServicePrincipalId [-ExpandPrope [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalMemberOfAsGroup -DirectoryObjectId -ServicePrinci [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalMemberOfAsGroup -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup) 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..1671b1a05d620 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalMemberOfCount -ServicePrincipalId -ConsistencyLev [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalMemberOfCount -InputObject -Consis [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -365,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount) 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..13e9fd56ae77f 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit) 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..0fc8520f9f3b1 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfCountAsDirectoryRole Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalMemberOfCountAsDirectoryRole -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalMemberOfCountAsDirectoryRole -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfCountAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole) 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..ab203cc15dd97 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalMemberOfCountAsGroup Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsGroup?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalMemberOfCountAsGroup -ServicePrincipalId -Consist [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalMemberOfCountAsGroup -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalMemberOfCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup) 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..e7eb0baafccdf 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 --- @@ -17,9 +17,6 @@ Delegated permission grants authorizing this service principal to access an API Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOauth2PermissionGrant](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOauth2PermissionGrant?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +37,7 @@ Get-MgServicePrincipalOauth2PermissionGrant -OAuth2PermissionGrantId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +47,7 @@ Get-MgServicePrincipalOauth2PermissionGrant -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,18 +62,13 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet. - - ## PARAMETERS ### -All @@ -565,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -595,27 +586,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOauth2PermissionGrant](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0) 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..bc4a9d7d46e00 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOauth2PermissionGrantCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOauth2PermissionGrantCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOauth2PermissionGrantCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalOauth2PermissionGrantCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, Directory.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, Directory.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOauth2PermissionGrantCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount) 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..d46887c73994d 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 --- @@ -18,9 +18,6 @@ Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObject?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgServicePrincipalOwnedObject -ServicePrincipalId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgServicePrincipalOwnedObject -DirectoryObjectId -ServicePrincipalI [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgServicePrincipalOwnedObject -DirectoryObjectId -ServicePrincipalI Get-MgServicePrincipalOwnedObject -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,18 +63,13 @@ Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalOwnedObject Cmdlet. - - ## PARAMETERS ### -All @@ -565,7 +557,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -595,27 +587,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0) 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..51d1c3417ef78 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment) 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..01f7557f54017 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectAsApplication Get the item of type microsoft.graph.directoryObject as microsoft.graph.application -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsApplication?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnedObjectAsApplication -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectAsApplication -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnedObjectAsApplication -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.application +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectAsApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication) 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..db440943a0b45 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -DirectoryObjectId -Service [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnedObjectAsEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint) 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..bb563d314e882 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -DirectoryObjectId -ServicePri [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgServicePrincipalOwnedObjectAsGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -547,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -577,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup) 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..9a69dae713baf 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnedObjectAsServicePrincipal -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal) 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..11e56dc5216b1 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +32,7 @@ Get-MgServicePrincipalOwnedObjectCount -ServicePrincipalId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,27 +370,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount) 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..0a0da4085a68b 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment -ServicePrincipalId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment) 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..fedda1063e19c 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCountAsApplication Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsApplication?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalOwnedObjectCountAsApplication -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCountAsApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication) 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..998a94a60c670 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCountAsEndpoint Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalOwnedObjectCountAsEndpoint -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint) 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..c1e437093865f 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCountAsGroup Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsGroup?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalOwnedObjectCountAsGroup -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup) 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..d6dfe472d8778 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal -ServicePrincipalId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal) 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..e1b45c4e7f548 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 --- @@ -17,9 +17,6 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwner](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwner?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgServicePrincipalOwner -ServicePrincipalId [-ExpandProperty ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -45,26 +41,15 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: List the owners of a service principal -```powershell +### EXAMPLE 1 + Get-MgServicePrincipalOwner -ServicePrincipalId '1c48f923-4fbb-4d37-b772-4d577eefec9e' Id DeletedDateTime -- --------------- 8a7c50d3-fcbd-4727-a889-8ab232dfea01 -``` - -This command lists the owners of the specified service principal. ## PARAMETERS @@ -519,26 +504,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalOwner](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner) 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..97e7aab5270c1 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalOwnerAsAppRoleAssignment -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment) 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..2e88e34cdb86e 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnerAsEndpoint -ServicePrincipalId [-ExpandPrope [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnerAsEndpoint -DirectoryObjectId -ServicePrinci [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnerAsEndpoint -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint) 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..bd184b3a9c055 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalOwnerAsServicePrincipal -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal) 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..1256dc58c08e0 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerAsUser Get the item of type microsoft.graph.directoryObject as microsoft.graph.user -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsUser?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalOwnerAsUser -ServicePrincipalId [-ExpandProperty [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalOwnerAsUser -DirectoryObjectId -ServicePrincipalI [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalOwnerAsUser -InputObject [-ExpandP [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.user +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser) 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..bf935fc0f05a9 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 --- @@ -17,9 +17,6 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgServicePrincipalOwnerByRef -ServicePrincipalId [-Filter ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,13 +41,15 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -461,27 +460,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref) 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..5c8ea86db434b 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnerCount -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnerCount -InputObject -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -365,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount) 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..fe38e3c36c797 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerCountAsAppRoleAssignment Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnerCountAsAppRoleAssignment -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnerCountAsAppRoleAssignment -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment) 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..fe43409cc6597 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerCountAsEndpoint Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsEndpoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnerCountAsEndpoint -ServicePrincipalId -Consist [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnerCountAsEndpoint -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint) 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..422078df467d9 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerCountAsServicePrincipal Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnerCountAsServicePrincipal -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnerCountAsServicePrincipal -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal) 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..655810e433562 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalOwnerCountAsUser Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsUser?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalOwnerCountAsUser -ServicePrincipalId -Consistency [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalOwnerCountAsUser -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalOwnerCountAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser) 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..db22f46295e91 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 --- @@ -17,9 +17,6 @@ Read the properties and relationships of a remoteDesktopSecurityConfiguration ob Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,27 +50,14 @@ Read the properties and relationships of a remoteDesktopSecurityConfiguration ob Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. -**Permissions** - -| 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 (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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. - - ## PARAMETERS ### -Break @@ -362,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -392,27 +376,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration) +- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md similarity index 63% rename from microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md rename to microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md index 3153db6b039b8..0c36356a02f33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -1,45 +1,52 @@ --- document type: cmdlet external help file: Microsoft.Graph.Applications-Help.xml -HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalClaimMappingPolicyByRef +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp Locale: 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 +title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp --- -# Remove-MgServicePrincipalClaimMappingPolicyByRef +# Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp ## SYNOPSIS -Remove a claimsMappingPolicy from a servicePrincipal. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef?view=graph-powershell-beta) +Read the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal. ## SYNTAX -### Delete (Default) +### List (Default) + +``` +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId [-ExpandProperty ] [-Property ] [-Filter ] + [-Search ] [-Skip ] [-Sort ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get ``` -Remove-MgServicePrincipalClaimMappingPolicyByRef -ClaimsMappingPolicyId - -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] - [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-ExpandProperty ] + [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` -### DeleteViaIdentity +### GetViaIdentity ``` -Remove-MgServicePrincipalClaimMappingPolicyByRef - -InputObject [-IfMatch ] [-ResponseHeadersVariable ] - [-Break] [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -InputObject [-ExpandProperty ] [-Property ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,30 +56,59 @@ This cmdlet has the following aliases, ## DESCRIPTION -Remove a claimsMappingPolicy from a servicePrincipal. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +Read the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications -Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId + +## 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: '' ``` -This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. +### -ApprovedClientAppId -## PARAMETERS +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 @@ -95,19 +131,21 @@ AcceptedValues: [] HelpMessage: '' ``` -### -ClaimsMappingPolicyId +### -CountVariable -The unique identifier of claimsMappingPolicy +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: [] +Aliases: +- CV ParameterSets: -- Name: Delete +- Name: List Position: Named - IsRequired: true + IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false @@ -116,16 +154,16 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Confirm +### -ExpandProperty -Prompts you for confirmation before running the cmdlet. +Expand related entities ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.String[] DefaultValue: '' SupportsWildcards: false Aliases: -- cf +- Expand ParameterSets: - Name: (All) Position: Named @@ -138,20 +176,20 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Headers +### -Filter -Optional headers that will be added to the request. +Filter items by property values ```yaml -Type: System.Collections.IDictionary +Type: System.String DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: (All) +- Name: List Position: Named IsRequired: false - ValueFromPipeline: true + ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false DontShow: false @@ -159,12 +197,12 @@ AcceptedValues: [] HelpMessage: '' ``` -### -HttpPipelineAppend +### -Headers -SendAsync Pipeline Steps to be appended to the front of the pipeline +Optional headers that will be added to the request. ```yaml -Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +Type: System.Collections.IDictionary DefaultValue: '' SupportsWildcards: false Aliases: [] @@ -172,7 +210,7 @@ ParameterSets: - Name: (All) Position: Named IsRequired: false - ValueFromPipeline: false + ValueFromPipeline: true ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false DontShow: false @@ -180,9 +218,9 @@ AcceptedValues: [] HelpMessage: '' ``` -### -HttpPipelinePrepend +### -HttpPipelineAppend -SendAsync Pipeline Steps to be prepended to the front of the pipeline +SendAsync Pipeline Steps to be appended to the front of the pipeline ```yaml Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] @@ -201,12 +239,12 @@ AcceptedValues: [] HelpMessage: '' ``` -### -IfMatch +### -HttpPipelinePrepend -ETag +SendAsync Pipeline Steps to be prepended to the front of the pipeline ```yaml -Type: System.String +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] DefaultValue: '' SupportsWildcards: false Aliases: [] @@ -233,7 +271,7 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: DeleteViaIdentity +- Name: GetViaIdentity Position: Named IsRequired: true ValueFromPipeline: true @@ -244,16 +282,38 @@ AcceptedValues: [] HelpMessage: '' ``` -### -PassThru +### -PageSize -Returns true when the command succeeds +Sets the page size of results. ```yaml -Type: System.Management.Automation.SwitchParameter -DefaultValue: False +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 @@ -350,6 +410,27 @@ 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 @@ -360,7 +441,13 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: Delete +- Name: List + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Get Position: Named IsRequired: true ValueFromPipeline: false @@ -371,18 +458,61 @@ AcceptedValues: [] HelpMessage: '' ``` -### -WhatIf +### -Skip -Runs the command in a mode that only reports what would happen without performing the actions. +Skip the first n items ```yaml -Type: System.Management.Automation.SwitchParameter +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: -- wi +- OrderBy ParameterSets: -- Name: (All) +- 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 @@ -412,7 +542,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### System.Boolean +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp {{ Fill in the Description }} @@ -423,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +583,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalClaimMappingPolicyByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [](https://learn.microsoft.com/graph/api/approvedclientapp-get?view=graph-rest-1.0) +- [](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/Remove-MgApplicationOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md similarity index 67% rename from microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md rename to microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md index 3387078744811..92900eb21e148 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -1,44 +1,40 @@ --- document type: cmdlet external help file: Microsoft.Graph.Applications-Help.xml -HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationOwnerByRef +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientappcount Locale: 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 +title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount --- -# Remove-MgApplicationOwnerByRef +# Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount ## SYNOPSIS -Remove an owner from an application. -As a recommended best practice, apps should have at least two owners. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationOwnerDirectoryObjectByRef?view=graph-powershell-beta) +Get the number of the resource ## SYNTAX -### Delete (Default) +### Get (Default) ``` -Remove-MgApplicationOwnerByRef -ApplicationId -DirectoryObjectId - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] - [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount + -ServicePrincipalId [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` -### DeleteViaIdentity +### GetViaIdentity ``` -Remove-MgApplicationOwnerByRef -InputObject - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] - [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount + -InputObject [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,54 +44,20 @@ This cmdlet has the following aliases, ## DESCRIPTION -Remove an owner from an application. -As a recommended best practice, apps should have at least two owners. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +Get the number of the resource ## EXAMPLES -### Example 1: Code snippet - -```powershell -Import-Module Microsoft.Graph.Applications +### EXAMPLE 1 -Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId +{{ Add code here }} -``` -This example shows how to use the Remove-MgApplicationOwnerByRef Cmdlet. +### EXAMPLE 2 +{{ Add code here }} ## PARAMETERS -### -ApplicationId - -The unique identifier of application - -```yaml -Type: System.String -DefaultValue: '' -SupportsWildcards: false -Aliases: -- ObjectId -ParameterSets: -- Name: Delete - Position: Named - IsRequired: true - ValueFromPipeline: false - ValueFromPipelineByPropertyName: false - ValueFromRemainingArguments: false -DontShow: false -AcceptedValues: [] -HelpMessage: '' -``` - ### -Break Wait for .NET debugger to attach @@ -117,31 +79,9 @@ 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: '' -``` - -### -DirectoryObjectId +### -Filter -The unique identifier of directoryObject +Filter items by property values ```yaml Type: System.String @@ -149,9 +89,9 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: Delete +- Name: (All) Position: Named - IsRequired: true + IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false @@ -223,27 +163,6 @@ 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 @@ -255,7 +174,7 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: DeleteViaIdentity +- Name: GetViaIdentity Position: Named IsRequired: true ValueFromPipeline: true @@ -266,27 +185,6 @@ 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 @@ -372,16 +270,15 @@ AcceptedValues: [] HelpMessage: '' ``` -### -WhatIf +### -Search -Runs the command in a mode that only reports what would happen without performing the actions. +Search items by search phrases ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.String DefaultValue: '' SupportsWildcards: false -Aliases: -- wi +Aliases: [] ParameterSets: - Name: (All) Position: Named @@ -394,6 +291,27 @@ 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, @@ -413,7 +331,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### System.Boolean +### System.Int32 {{ Fill in the Description }} @@ -424,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -454,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationOwnerByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](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..24064d53d4d28 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId -TargetDeviceGroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +58,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. -**Permissions** - -| 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 (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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -599,28 +583,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [](https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0) 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..10d33da8f3f74 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Application-RemoteDesktopConfig.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount) 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..d83975d058c28 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronization Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalSynchronization -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -336,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -366,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization) 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..d630340a8aeb7 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationAccessToken Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationAccessToken](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationAccessToken?view=graph-powershell-beta) - ## SYNTAX ### AcquireExpanded (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Acquire @@ -40,7 +36,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentityExpanded @@ -52,7 +47,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcquireViaIdentity @@ -63,7 +57,6 @@ Get-MgServicePrincipalSynchronizationAccessToken -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,13 +68,15 @@ This cmdlet has the following aliases, Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -114,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -185,7 +180,7 @@ HelpMessage: '' ### -Credentials - +. To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -491,7 +486,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Credentials ]: [Key ]: synchronizationSecret @@ -501,7 +496,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -531,28 +526,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationAccessToken](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) 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..ca5902a66ff14 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJob Retrieve the existing synchronization job and its properties. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId -Synchroni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgServicePrincipalSynchronizationJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Retrieve the existing synchronization job and its properties. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -All @@ -568,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -598,28 +582,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0) 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..dafc8d3cbb417 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobBulkUpload The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload) 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..042f4e0b71d7f 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -355,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -385,27 +392,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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..ffe92576b5408 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalSynchronizationJobCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount) 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..91697d44690ed 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobSchema Retrieve the schema for a given synchronization job or template. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Retrieve the schema for a given synchronization job or template. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | CustomSecAttributeProvisioning.Read.All, Synchronization.ReadWrite.All, Synchronization.Read.All, CustomSecAttributeProvisioning.ReadWrite.All, Application.ReadWrite.OwnedBy, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -409,27 +393,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0) 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..f1dd75b538f97 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobSchemaDirectory Contains the collection of directories and all of their objects. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionId < -ServicePrincipalId -SynchronizationJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -575,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -605,27 +612,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory) 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..c0d9ba6ffc744 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount -ServicePrincipalId -SynchronizationJobId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -356,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -386,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount) 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..fbf1256a76646 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationSecretCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationSecretCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationSecretCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalSynchronizationSecretCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationSecretCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount) 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..9a4b1a55e5c2c 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationTemplate Preconfigured synchronization settings for a particular application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,13 +57,13 @@ This cmdlet has the following aliases, Preconfigured synchronization settings for a particular application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +Import-Module Microsoft.Graph.Applications + +Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId $servicePrincipalId ## PARAMETERS @@ -556,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,29 +582,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0) 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..e146e748cd4ff 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationTemplateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalSynchronizationTemplateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount) 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..ac18d21893810 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchema Default synchronization schema for the jobs based on this template. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Default synchronization schema for the jobs based on this template. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -366,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema) 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..6983ab522f3a3 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory Contains the collection of directories and all of their objects. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefinitio -ServicePrincipalId -SynchronizationTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -575,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -605,27 +612,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory) 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..646e7465f3ef5 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount -ServicePrinci -SynchronizationTemplateId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -356,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -386,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount) 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..f3c2f74ea3216 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTokenIssuancePolicy The tokenIssuancePolicies assigned to this service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalTokenIssuancePolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, The tokenIssuancePolicies assigned to this service principal. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -471,27 +478,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalTokenIssuancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy) 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..720b614249c2a 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTokenIssuancePolicyByRef The tokenIssuancePolicies assigned to this service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId [-Fi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, The tokenIssuancePolicies assigned to this service principal. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -427,27 +434,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref) 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..e8ec010b588b9 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTokenIssuancePolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalTokenIssuancePolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -364,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTokenIssuancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount) 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..1815228c80d49 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 --- @@ -16,9 +16,6 @@ title: Get-MgServicePrincipalTokenLifetimePolicy List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalTokenLifetimePolicy -ServicePrincipalId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,27 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTokenLifetimePolicy -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalTokenLifetimePolicy Cmdlet. - - ## PARAMETERS ### -All @@ -494,27 +478,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalTokenLifetimePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) 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..d9f927bee5e14 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 --- @@ -16,9 +16,6 @@ title: Get-MgServicePrincipalTokenLifetimePolicyByRef List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId [-Fi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -42,13 +39,15 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -437,28 +436,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) 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..99b589919807d 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTokenLifetimePolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgServicePrincipalTokenLifetimePolicyCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,27 +371,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTokenLifetimePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount) 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..2f9525c055f75 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOf Get transitiveMemberOf from servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOf?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId [-ExpandPr [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgServicePrincipalTransitiveMemberOf -DirectoryObjectId -ServicePri [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgServicePrincipalTransitiveMemberOf -InputObject [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,18 +58,13 @@ This cmdlet has the following aliases, Get transitiveMemberOf from servicePrincipals ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Get-MgServicePrincipalTransitiveMemberOf Cmdlet. - - ## PARAMETERS ### -All @@ -583,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -613,27 +604,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0) 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..95b21c60149a2 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit) 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..71745b405927c 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -DirectoryObjectId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole) 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..3dc74fa72d25a 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -DirectoryObjectId -ServicePrincipalId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgServicePrincipalTransitiveMemberOfAsGroup -InputObject ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -570,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup) 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..06d39708cf139 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalTransitiveMemberOfCount -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalTransitiveMemberOfCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| 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 (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -365,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount) 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..aa72ab8de6b10 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit -ServicePrinci -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit -InputObject -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit) 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..842fe8eb51141 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole -ServicePrincipalId -ConsistencyLevel [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole) 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..796bde83bb5bf 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 --- @@ -15,9 +15,6 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsGroup Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsGroup -ServicePrincipalId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgServicePrincipalTransitiveMemberOfCountAsGroup -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -387,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgServicePrincipalTransitiveMemberOfCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup) 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..60bc3e63ea278 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 --- @@ -16,9 +16,6 @@ title: Get-MgUserAppRoleAssignment Represents the app roles a user is granted for an application. Supports $expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgUserAppRoleAssignment -UserId [-ExpandProperty ] [-Prop [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [-ExpandProperty ] [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgUserAppRoleAssignment -InputObject [-ExpandPropert [-Property ] [-ConsistencyLevel ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,11 +60,11 @@ Represents the app roles a user is granted for an application. Supports $expand. ## EXAMPLES -### Example 1: Get assigned app roles -```powershell - Get-MgUserAppRoleAssignment -UserId "529827aa-d058-4821-a012-4de3ce093955" | - Format-List Id, AppRoleID, CreationTimeStamp, PrincipalDisplayName,PrincipalId, PrincipalType, ResourceDisplayName +### EXAMPLE 1 + +Get-MgUserAppRoleAssignment -UserId "529827aa-d058-4821-a012-4de3ce093955" | + Format-List Id, AppRoleID, CreationTimeStamp, PrincipalDisplayName,PrincipalId, PrincipalType, ResourceDisplayName Id : QQxVaKMYXkmqHc9ijBcbSFkvIqIpOSdOjXRyNBWe_zE AppRoleId : 00000000-0000-0000-0000-000000000000 @@ -82,9 +79,6 @@ PrincipalDisplayName : MOD Administrator PrincipalId : 529827aa-d058-4821-a012-4de3ce093955 PrincipalType : User ResourceDisplayName : dxprovisioning-worker-mfa -``` - -This command gets all the application roles that the selected user has been assigned. ## PARAMETERS @@ -595,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -625,27 +619,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/agentuser-list-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment) +- [](https://learn.microsoft.com/graph/api/agentuser-list-approleassignments?view=graph-rest-1.0) 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..b9e3bdbcc8065 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 --- @@ -15,9 +15,6 @@ title: Get-MgUserAppRoleAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaUserAppRoleAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,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 +33,7 @@ Get-MgUserAppRoleAssignmentCount -InputObject -Consisten [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, Directory.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -364,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount) 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..b9b4913ca7695 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFilterApplicationSynchronizationJobSchemaOperator List all operators supported in the scoping filters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator?view=graph-powershell-beta) - ## SYNTAX ### Filter (Default) @@ -28,7 +25,7 @@ Invoke-MgFilterApplicationSynchronizationJobSchemaOperator -ApplicationId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFilterApplicationSynchronizationJobSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -489,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -519,28 +526,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFilterApplicationSynchronizationJobSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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..6dbdc2be4b81d 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator List all operators supported in the scoping filters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator?view=graph-powershell-beta) - ## SYNTAX ### Filter (Default) @@ -28,7 +25,7 @@ Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator -ApplicationId < [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -497,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -527,28 +526,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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..c3e61b1a9f17a 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator List all operators supported in the scoping filters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator?view=graph-powershell-beta) - ## SYNTAX ### Filter (Default) @@ -28,7 +25,7 @@ Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -ServicePrincipa [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,27 +48,14 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator Cmdlet. - - ## PARAMETERS ### -Break @@ -509,7 +493,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -539,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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..f6466b54d37cc 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator List all operators supported in the scoping filters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator?view=graph-powershell-beta) - ## SYNTAX ### Filter (Default) @@ -28,7 +25,7 @@ Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator -ServicePri [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FilterViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -496,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -526,28 +525,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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..01671f95ce2d2 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFunctionApplicationSynchronizationJobSchema List all the functions currently supported in the attributeMappingSource. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionApplicationSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Function (Default) @@ -28,7 +25,7 @@ Invoke-MgFunctionApplicationSynchronizationJobSchema -ApplicationId [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFunctionApplicationSynchronizationJobSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -489,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -519,28 +526,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFunctionApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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..9739e8f5fbfb3 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFunctionApplicationSynchronizationTemplateSchema List all the functions currently supported in the attributeMappingSource. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Function (Default) @@ -28,7 +25,7 @@ Invoke-MgFunctionApplicationSynchronizationTemplateSchema -ApplicationId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFunctionApplicationSynchronizationTemplateSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -497,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -527,28 +526,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFunctionApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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..ff2843b4704c4 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFunctionServicePrincipalSynchronizationJobSchema List all the functions currently supported in the attributeMappingSource. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Function (Default) @@ -28,7 +25,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -ServicePrincipalId ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,27 +48,14 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Invoke-MgFunctionServicePrincipalSynchronizationJobSchema Cmdlet. - - ## PARAMETERS ### -Break @@ -509,7 +493,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -539,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFunctionServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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..3881544ac1d94 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 --- @@ -15,9 +15,6 @@ title: Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema List all the functions currently supported in the attributeMappingSource. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Function (Default) @@ -28,7 +25,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema -ServicePrincipal [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### FunctionViaIdentity @@ -39,7 +36,7 @@ Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -496,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -526,28 +525,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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..3d9d340eeb404 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 --- @@ -16,9 +16,6 @@ title: Invoke-MgInstantiateApplicationTemplate Add an instance of an application from the Microsoft Entra application gallery into your directory. For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaInstantiateApplicationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaInstantiateApplicationTemplate?view=graph-powershell-beta) - ## SYNTAX ### InstantiateExpanded (Default) @@ -29,7 +26,6 @@ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId [-ServiceManagementReference ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Instantiate @@ -40,7 +36,6 @@ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InstantiateViaIdentityExpanded @@ -51,7 +46,6 @@ Invoke-MgInstantiateApplicationTemplate -InputObject [-ServiceManagementReference ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InstantiateViaIdentity @@ -62,7 +56,6 @@ Invoke-MgInstantiateApplicationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Add an instance of an application from the Microsoft Entra application gallery into your directory. For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -96,10 +80,6 @@ $params = @{ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId $applicationTemplateId -BodyParameter $params -``` -This example shows how to use the Invoke-MgInstantiateApplicationTemplate Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -158,7 +138,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -229,7 +209,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -432,7 +412,7 @@ HelpMessage: '' ### -ServiceManagementReference - +. ```yaml Type: System.String @@ -513,12 +493,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [ServiceManagementReference ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -548,27 +528,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgInstantiateApplicationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate) -- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate) +- [](https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0) 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..7da404398f846 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 --- @@ -16,9 +16,6 @@ title: Invoke-MgParseApplicationSynchronizationJobSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression?view=graph-powershell-beta) - ## SYNTAX ### ParseExpanded (Default) @@ -31,7 +28,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +39,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -55,7 +50,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -66,7 +60,6 @@ Invoke-MgParseApplicationSynchronizationJobSchemaExpression -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -138,7 +141,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -209,7 +212,7 @@ HelpMessage: '' ### -Expression - +. ```yaml Type: System.String @@ -549,7 +552,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -599,7 +602,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -626,7 +629,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION ``: attributeDefinition +TARGETATTRIBUTEDEFINITION : attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -659,7 +662,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT ``: expressionInputObject +TESTINPUTOBJECT : expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -707,28 +710,5 @@ Not nullable. ## RELATED LINKS -- [Invoke-MgParseApplicationSynchronizationJobSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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..48de4ca22ec20 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 --- @@ -16,9 +16,6 @@ title: Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression?view=graph-powershell-beta) - ## SYNTAX ### ParseExpanded (Default) @@ -31,7 +28,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression -ApplicationId [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +39,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +51,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +62,6 @@ Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +74,16 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -140,7 +143,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -211,7 +214,7 @@ HelpMessage: '' ### -Expression - +. ```yaml Type: System.String @@ -551,7 +554,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -601,7 +604,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -628,7 +631,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION ``: attributeDefinition +TARGETATTRIBUTEDEFINITION : attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -661,7 +664,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT ``: expressionInputObject +TESTINPUTOBJECT : expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -709,28 +712,5 @@ Not nullable. ## RELATED LINKS -- [Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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..fe89d40050629 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 --- @@ -16,9 +16,6 @@ title: Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression?view=graph-powershell-beta) - ## SYNTAX ### ParseExpanded (Default) @@ -31,7 +28,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression -ServicePrincip [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +39,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression -ServicePrincip [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +51,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +62,6 @@ Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,13 +74,15 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -120,7 +115,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -191,7 +186,7 @@ HelpMessage: '' ### -Expression - +. ```yaml Type: System.String @@ -558,7 +553,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -608,7 +603,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -635,7 +630,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION ``: attributeDefinition +TARGETATTRIBUTEDEFINITION : attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -668,7 +663,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT ``: expressionInputObject +TESTINPUTOBJECT : expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -716,28 +711,5 @@ Not nullable. ## RELATED LINKS -- [Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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..9707f249660ba 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 --- @@ -16,9 +16,6 @@ title: Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression?view=graph-powershell-beta) - ## SYNTAX ### ParseExpanded (Default) @@ -31,7 +28,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression -ServicePr [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Parse @@ -43,7 +39,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression -ServicePr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentityExpanded @@ -56,7 +51,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression [-TestInputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ParseViaIdentity @@ -68,7 +62,6 @@ Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,13 +74,15 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -120,7 +115,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -191,7 +186,7 @@ HelpMessage: '' ### -Expression - +. ```yaml Type: System.String @@ -558,7 +553,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -608,7 +603,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -635,7 +630,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION ``: attributeDefinition +TARGETATTRIBUTEDEFINITION : attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -668,7 +663,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT ``: expressionInputObject +TESTINPUTOBJECT : expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -716,28 +711,5 @@ Not nullable. ## RELATED LINKS -- [Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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..3b3065af0751b 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) @@ -715,22 +727,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserAppRoleAssignment](Update-MgUserAppRoleAssignment.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..c0b470281ae72 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 --- @@ -16,9 +16,6 @@ title: New-MgApplication Create a new application object. This API can also create an agentIdentityBlueprint object when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplication?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -56,7 +53,7 @@ New-MgApplication [-ResponseHeadersVariable ] [-AddIns ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -65,7 +62,7 @@ New-MgApplication [-ResponseHeadersVariable ] [-AddIns [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,18 +75,10 @@ This cmdlet has the following aliases, Create a new application object. This API can also create an agentIdentityBlueprint object when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Create a new application -```powershell +### EXAMPLE 1 + New-MgApplication -DisplayName 'New app' | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -98,9 +87,6 @@ DisplayName : New app AppId : c678b75d-1012-4466-8655-1672192232b4 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : M365B977454.onmicrosoft.com -``` - -This example creates a new application. ## PARAMETERS @@ -447,7 +433,7 @@ HelpMessage: '' ### -DefaultRedirectUri - +. ```yaml Type: System.String @@ -649,7 +635,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies - +. To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -804,7 +790,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -964,7 +950,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1443,7 +1429,7 @@ HelpMessage: '' ### -TokenIssuancePolicies - +. To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1465,7 +1451,7 @@ HelpMessage: '' ### -TokenLifetimePolicies - +. To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml @@ -1615,7 +1601,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API ``: apiApplication +API : apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -1643,8 +1629,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -1678,14 +1664,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 +1687,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. @@ -1713,18 +1720,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors +AUTHENTICATIONBEHAVIORS : authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER ``: application +BODYPARAMETER : application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1768,8 +1775,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -1807,14 +1814,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 +1837,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. @@ -1841,8 +1869,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2412,13 +2440,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION ``: certification +CERTIFICATION : certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF ``: directoryObject +CREATEDONBEHALFOF : directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2504,7 +2532,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2538,7 +2566,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS ``: optionalClaims +OPTIONALCLAIMS : optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -2561,7 +2589,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS ``: parentalControlSettings +PARENTALCONTROLSETTINGS : parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -2590,13 +2618,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT ``: publicClientApplication +PUBLICCLIENT : publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification +REQUESTSIGNATUREVERIFICATION : requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -2618,7 +2646,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -2629,11 +2657,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA ``: spaApplication +SPA : spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2922,13 +2950,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB ``: webApplication +WEB : webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -2944,27 +2972,5 @@ WEB ``: webApplication ## RELATED LINKS -- [New-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication) +- [](https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0) 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..ce9a15cb1fd08 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 --- @@ -17,9 +17,6 @@ Assign an appManagementPolicy policy object to an application or service princip The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationAppManagementPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgApplicationAppManagementPolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgApplicationAppManagementPolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +46,6 @@ New-MgApplicationAppManagementPolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +56,6 @@ New-MgApplicationAppManagementPolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,18 +69,9 @@ Assign an appManagementPolicy policy object to an application or service princip The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.Read.All, Policy.ReadWrite.ApplicationConfiguration, Policy.Read.ApplicationConfiguration, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.Read.All, Policy.ReadWrite.ApplicationConfiguration, Policy.Read.ApplicationConfiguration, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -97,10 +81,6 @@ $params = @{ New-MgApplicationAppManagementPolicyByRef -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the New-MgApplicationAppManagementPolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -160,7 +140,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -510,12 +490,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -545,27 +525,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref) +- [](https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-1.0) 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..3bb1f0eb9e04e 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationExtensionProperty Create a new directory extension definition, represented by an extensionProperty object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgApplicationExtensionProperty -ApplicationId [-ResponseHeadersVari [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgApplicationExtensionProperty -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgApplicationExtensionProperty -InputObject [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +57,7 @@ New-MgApplicationExtensionProperty -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +69,9 @@ This cmdlet has the following aliases, Create a new directory extension definition, represented by an extensionProperty object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -99,10 +86,6 @@ $params = @{ New-MgApplicationExtensionProperty -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the New-MgApplicationExtensionProperty Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -694,7 +677,7 @@ 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 ``: extensionProperty +BODYPARAMETER : extensionProperty [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -720,7 +703,7 @@ Supports $filter (eq). Not nullable. UserGroupAdministrativeUnitApplicationDeviceOrganization -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -750,27 +733,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty) +- [](https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-1.0) 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..c190f93468c81 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 --- @@ -17,9 +17,6 @@ Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgApplicationFederatedIdentityCredential -ApplicationId [-Description ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgApplicationFederatedIdentityCredential -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +48,7 @@ New-MgApplicationFederatedIdentityCredential -InputObject ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +58,7 @@ New-MgApplicationFederatedIdentityCredential -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +72,9 @@ Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example: Create a federated identity credential for an application -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -101,10 +89,6 @@ $params = @{ New-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -BodyParameter $params -``` -This example will### example: create a federated identity credential for an application - - ## PARAMETERS ### -AdditionalProperties @@ -649,7 +633,7 @@ 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 ``: federatedIdentityCredential +BODYPARAMETER : federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -680,7 +664,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -710,27 +694,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0) 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..438556c4f6e25 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 --- @@ -16,9 +16,6 @@ title: New-MgApplicationOwnerByRef Add an owner to an application. Application owners can be individual users, the associated service principal, or another service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationOwnerByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgApplicationOwnerByRef -ApplicationId -OdataId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgApplicationOwnerByRef -ApplicationId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgApplicationOwnerByRef -InputObject -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +54,6 @@ New-MgApplicationOwnerByRef -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,26 +66,15 @@ This cmdlet has the following aliases, Add an owner to an application. Application owners can be individual users, the associated service principal, or another service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Add an owner to an application -```powershell - $NewOwner = @{ - "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/{075b32dd-edb7-47cf-89ef-f3f733683a3f}" - } +### EXAMPLE 1 -New-MgApplicationOwnerByRef -ApplicationId 'f6b30057-7095-4e2c-89f8-224149f591b7' -BodyParameter $NewOwner -``` +$NewOwner = @{ + "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/{075b32dd-edb7-47cf-89ef-f3f733683a3f}" + } -In this example, the first command defines the value for the $NewOwner variable. The second command adds the new owner to the specified application. +New-MgApplicationOwnerByRef -ApplicationId 'f6b30057-7095-4e2c-89f8-224149f591b7' -BodyParameter $NewOwner ## PARAMETERS @@ -153,7 +135,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -503,12 +485,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -538,27 +520,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref) +- [](https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-1.0) 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..86a7bc4cf01bc 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationSynchronizationJob Create new navigation property to jobs for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgApplicationSynchronizationJob -ApplicationId [-ResponseHeadersVar [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgApplicationSynchronizationJob -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgApplicationSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgApplicationSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to jobs for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -630,7 +637,7 @@ 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 ``: synchronizationJob +BODYPARAMETER : synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -857,7 +864,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -884,7 +891,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE ``: synchronizationSchedule +SCHEDULE : synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -894,7 +901,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1032,7 +1039,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS ``: synchronizationStatus +STATUS : synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1108,27 +1115,4 @@ Some settings are inherited from the template. ## RELATED LINKS -- [New-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob) 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..455b327327856 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 --- @@ -16,9 +16,6 @@ title: New-MgApplicationSynchronizationJobOnDemand Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJobOnDemand](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJobOnDemand?view=graph-powershell-beta) - ## SYNTAX ### ProvisionExpanded (Default) @@ -29,7 +26,7 @@ New-MgApplicationSynchronizationJobOnDemand -ApplicationId -Synchroniza [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Provision @@ -40,7 +37,6 @@ New-MgApplicationSynchronizationJobOnDemand -ApplicationId -Synchroniza [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ProvisionViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgApplicationSynchronizationJobOnDemand -InputObject [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### ProvisionViaIdentity @@ -62,7 +58,6 @@ New-MgApplicationSynchronizationJobOnDemand -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -134,7 +139,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -296,7 +301,7 @@ HelpMessage: '' ### -Parameters - +. To construct, see NOTES section for PARAMETERS properties and create a hash table. ```yaml @@ -490,7 +495,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Parameters ]: [RuleId ]: The identifier of the synchronizationRule to be applied. @@ -507,7 +512,7 @@ Can be one of the following: An onPremisesDistinguishedName for synchronization Can be one of the following: user for synchronizing between Active Directory and Azure AD.User for synchronizing a user between Microsoft Entra ID and a third-party application. Worker for synchronization a user between Workday and either Active Directory or Microsoft Entra ID.Group for synchronizing a group between Microsoft Entra ID and a third-party application. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -552,28 +557,5 @@ Worker for synchronization a user between Workday and either Active Directory or ## RELATED LINKS -- [New-MgApplicationSynchronizationJobOnDemand](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) 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..59097f68b6786 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationSynchronizationJobSchemaDirectory Create new navigation property to directories for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,7 @@ New-MgApplicationSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to directories for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -656,7 +662,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -709,7 +715,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -779,27 +785,4 @@ Not nullable. ## RELATED LINKS -- [New-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory) 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..cc5c04faeb09e 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationSynchronizationTemplate Create new navigation property to templates for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgApplicationSynchronizationTemplate -ApplicationId [-ResponseHeade [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -43,7 +39,6 @@ New-MgApplicationSynchronizationTemplate -InputObject [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -53,7 +48,7 @@ New-MgApplicationSynchronizationTemplate -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +58,7 @@ New-MgApplicationSynchronizationTemplate -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to templates for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -656,7 +661,7 @@ 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 ``: synchronizationTemplate +BODYPARAMETER : synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -808,7 +813,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -840,7 +845,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -981,27 +986,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [New-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate) 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..e50c83999bdfe 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationSynchronizationTemplateSchemaDirectory Create new navigation property to directories for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,7 @@ New-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to directories for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -656,7 +662,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -709,7 +715,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -779,27 +785,4 @@ Not nullable. ## RELATED LINKS -- [New-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory) 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..449a7f3e1a43a 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 --- @@ -15,9 +15,6 @@ title: New-MgApplicationTokenIssuancePolicyByRef Assign a tokenIssuancePolicy to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgApplicationTokenIssuancePolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +54,6 @@ New-MgApplicationTokenIssuancePolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,18 +65,9 @@ This cmdlet has the following aliases, Assign a tokenIssuancePolicy to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -93,10 +77,6 @@ $params = @{ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the New-MgApplicationTokenIssuancePolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -156,7 +136,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -506,12 +486,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -541,27 +521,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-1.0) 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..baf3fd674c25e 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 --- @@ -16,9 +16,6 @@ title: New-MgApplicationTokenLifetimePolicyByRef Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaApplicationTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId -OdataId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgApplicationTokenLifetimePolicyByRef -InputObject - [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgApplicationTokenLifetimePolicyByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +67,9 @@ This cmdlet has the following aliases, Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -95,10 +79,6 @@ $params = @{ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the New-MgApplicationTokenLifetimePolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -158,7 +138,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -508,12 +488,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -543,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0) 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..437b2b6c27060 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 --- @@ -18,9 +18,6 @@ All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,7 @@ New-MgGroupAppRoleAssignment -GroupId [-ResponseHeadersVariable ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +39,6 @@ New-MgGroupAppRoleAssignment -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +51,6 @@ New-MgGroupAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +60,7 @@ New-MgGroupAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -80,18 +75,10 @@ All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Assign an app role to a group -```powershell +### EXAMPLE 1 + $appRoleAssignment = @{ "principalId"= "f07a8d78-f18c-4c02-b339-9ebace025122" "resourceId"= "1c48f923-4fbb-4d37-b772-4d577eefec9e" @@ -112,19 +99,6 @@ ResourceDisplayName : Office 365 SharePoint Online ResourceId : 1c48f923-4fbb-4d37-b772-4d577eefec9e AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#groups('f07a8d78-f18c-4c02-b339-9ebace025122')/appRoleAssignments/$entity], [@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da- b10d-14f1195d665f/directoryObjects/$/Microsoft.DirectoryServices.Group('f07a8d78-f18c-4c02-b339-9ebace025122')/appRoleAssignments/eI168IzxAkyzOZ66zgJRIqVVeeA1CVFKmaBn-MGn0Bw]} -``` - -In this example, the first defines creates the `$appRoleAssignment` variable that defines the following: - --`principalId`: The id of the group to which you are assigning the app role. - --`resourceId`: The id of the resource servicePrincipal which has defined the app role. - --`appRoleId`: The id of the appRole (defined on the resource service principal) to assign to the group. - -Learn more about the [AppRoleAssignment resource](/graph/api/resources/approleassignment?view=graph-rest-1.0). - -The second command adds the role to the specified group. ## PARAMETERS @@ -746,7 +720,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -776,7 +750,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -806,27 +780,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment) +- [](https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0) 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..4b4f77f4d94c0 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 --- @@ -16,9 +16,6 @@ title: New-MgServicePrincipal Create a new servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -59,7 +56,6 @@ New-MgServicePrincipal [-ResponseHeadersVariable ] [-AccountEnabled] [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -69,7 +65,6 @@ New-MgServicePrincipal -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,18 +77,10 @@ This cmdlet has the following aliases, Create a new servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.Create, AgentIdentity.CreateAsManager, AgentIdentity.Create.All, | - ## EXAMPLES -### Example 1: Create a new service principal object -```powershell +### EXAMPLE 1 + $ServicePrincipalID=@{ "AppId" = "fc876dd1-6bcb-4304-b9b6-18ddf1526b62" } @@ -104,9 +91,6 @@ Id : ac483a5f-f291-4499-8a62-058547724579 DisplayName : Example App AppId : ffdf268a-2fe2-49e1-8cd7-66ecb61641ec SignInAudience : AzureADandPersonalMicrosoftAccount -``` - -In this example, the first command defines the service principal object in the variable $ServiceprincipalId. The second command creates a new service principal object. ## PARAMETERS @@ -587,7 +571,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications - +. To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -700,7 +684,7 @@ HelpMessage: '' ### -Endpoints - +. To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -896,7 +880,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1586,7 +1570,7 @@ HelpMessage: '' ### -TransitiveMemberOf - +. To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml @@ -1709,14 +1693,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 +1716,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. @@ -1804,12 +1809,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER ``: servicePrincipal +BODYPARAMETER : servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1854,14 +1859,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 +1882,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). @@ -1926,8 +1952,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2128,8 +2154,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -2603,7 +2629,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2694,8 +2720,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -2735,7 +2761,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2759,11 +2785,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3058,7 +3084,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3067,27 +3093,5 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [New-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0) 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..82b550bad58d4 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 --- @@ -18,9 +18,6 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +52,6 @@ New-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +61,7 @@ New-MgServicePrincipalAppRoleAssignedTo -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,18 +76,9 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -104,10 +90,6 @@ $params = @{ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalAppRoleAssignedTo Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -728,7 +710,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -758,7 +740,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -788,27 +770,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-1.0) 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..0fde3468e967e 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 --- @@ -18,9 +18,6 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +52,6 @@ New-MgServicePrincipalAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +61,7 @@ New-MgServicePrincipalAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,18 +76,9 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Application.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -104,10 +90,6 @@ $params = @{ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalAppRoleAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -728,7 +710,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -758,7 +740,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -788,27 +770,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-1.0) 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..51c8639243847 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalClaimMappingPolicyByRef Assign a claimsMappingPolicy to a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalClaimMappingPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId -Odat [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgServicePrincipalClaimMappingPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Assign a claimsMappingPolicy to a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -94,10 +78,6 @@ $params = @{ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -506,12 +486,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -541,27 +521,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-1.0) 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..fb28a7235a0ee 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalDelegatedPermissionClassification Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,6 @@ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +46,7 @@ New-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +57,6 @@ New-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.PermissionGrant, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.PermissionGrant, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -96,10 +82,6 @@ $params = @{ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -571,7 +553,7 @@ 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 ``: delegatedPermissionClassification +BODYPARAMETER : delegatedPermissionClassification [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -582,7 +564,7 @@ Doesn't support $filter. [PermissionName ]: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Doesn't support $filter. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -612,27 +594,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-1.0) 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..0d81e3f954818 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalEndpoint Create new navigation property to endpoints for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,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 +35,6 @@ New-MgServicePrincipalEndpoint -ServicePrincipalId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +46,6 @@ New-MgServicePrincipalEndpoint -InputObject [-ProviderResourceId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +55,7 @@ New-MgServicePrincipalEndpoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -72,6 +67,16 @@ This cmdlet has the following aliases, Create new navigation property to endpoints for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -152,7 +157,7 @@ HelpMessage: '' ### -Capability - +. ```yaml Type: System.String @@ -348,7 +353,7 @@ HelpMessage: '' ### -ProviderId - +. ```yaml Type: System.String @@ -375,7 +380,7 @@ HelpMessage: '' ### -ProviderName - +. ```yaml Type: System.String @@ -402,7 +407,7 @@ HelpMessage: '' ### -ProviderResourceId - +. ```yaml Type: System.String @@ -541,7 +546,7 @@ HelpMessage: '' ### -Uri - +. ```yaml Type: System.String @@ -622,7 +627,7 @@ 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 ``: endpoint +BODYPARAMETER : endpoint [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -634,7 +639,7 @@ Read-only. [ProviderResourceId ]: [Uri ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -664,27 +669,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint) 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..6dd6aeb12fe9c 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Assign a homeRealmDiscoveryPolicy to a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Assign a homeRealmDiscoveryPolicy to a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -94,10 +78,6 @@ $params = @{ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -506,12 +486,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -541,27 +521,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-1.0) 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..ec8418f32d7ef 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 --- @@ -16,9 +16,6 @@ title: New-MgServicePrincipalOwnerByRef Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalOwnerByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgServicePrincipalOwnerByRef -ServicePrincipalId -OdataId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgServicePrincipalOwnerByRef -ServicePrincipalId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgServicePrincipalOwnerByRef -InputObject -OdataId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgServicePrincipalOwnerByRef -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,26 +67,15 @@ This cmdlet has the following aliases, Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Directory.ReadWrite.All, Directory.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Add an owner for a service principal -```powershell +### EXAMPLE 1 + $newOwner = @{ "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/8a7c50d3-fcbd-4727-a889-8ab232dfea01" } New-MgServicePrincipalOwnerByRef -ServicePrincipalId '1c48f923-4fbb-4d37-b772-4d577eefec9e' -BodyParameter $newOwner -``` - -In this example, the first command defines the value for the `$newOwner` variable in a hashtable. The second command adds the new owner to the specified service principal. ## PARAMETERS @@ -126,7 +108,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -503,12 +485,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -538,27 +520,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md similarity index 64% rename from microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md rename to microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md index f3892d23fa7b0..ba02ccd6ea6b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -1,45 +1,63 @@ --- document type: cmdlet external help file: Microsoft.Graph.Applications-Help.xml -HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalOwnerByRef +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp Locale: 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 +title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp --- -# Remove-MgServicePrincipalOwnerByRef +# New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp ## SYNOPSIS -Remove an owner from a servicePrincipal object. -As a recommended best practice, service principals should have at least two owners. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef?view=graph-powershell-beta) +Create a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. +You can configure a maximum of 20 approved client apps. ## SYNTAX -### Delete (Default) +### CreateExpanded (Default) ``` -Remove-MgServicePrincipalOwnerByRef -DirectoryObjectId - -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ServicePrincipalId -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` -### DeleteViaIdentity +### CreateViaIdentityExpanded ``` -Remove-MgServicePrincipalOwnerByRef -InputObject - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] - [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +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 @@ -49,35 +67,78 @@ This cmdlet has the following aliases, ## DESCRIPTION -Remove an owner from a servicePrincipal object. -As a recommended best practice, service principals should have at least two owners. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +Create a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. +You can configure a maximum of 20 approved client apps. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications $params = @{ - "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" + "@odata.type" = "#microsoft.graph.approvedClientApp" + displayName = "Client App 1" } -Remove-MgServicePrincipalOwnerByRef -ServicePrincipalId $servicePrincipalId -DirectoryObjectId $directoryObjectId -BodyParameter $params +New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -BodyParameter $params + +## 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: '' ``` -This example shows how to use the Remove-MgServicePrincipalOwnerByRef Cmdlet. +### -BodyParameter -## PARAMETERS +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 @@ -122,9 +183,9 @@ AcceptedValues: [] HelpMessage: '' ``` -### -DirectoryObjectId +### -DisplayName -The unique identifier of directoryObject +The display name of the approved client application. ```yaml Type: System.String @@ -132,9 +193,15 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: Delete +- Name: CreateViaIdentityExpanded Position: Named - IsRequired: true + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false @@ -206,9 +273,10 @@ AcceptedValues: [] HelpMessage: '' ``` -### -IfMatch +### -Id -ETag +The unique identifier for an entity. +Read-only. ```yaml Type: System.String @@ -216,7 +284,13 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: (All) +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded Position: Named IsRequired: false ValueFromPipeline: false @@ -238,31 +312,16 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: DeleteViaIdentity +- Name: CreateViaIdentityExpanded 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) +- Name: CreateViaIdentity Position: Named - IsRequired: false - ValueFromPipeline: false + IsRequired: true + ValueFromPipeline: true ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false DontShow: false @@ -365,7 +424,13 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: Delete +- Name: CreateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create Position: Named IsRequired: true ValueFromPipeline: false @@ -411,13 +476,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable {{ Fill in the Description }} +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + ### System.Collections.IDictionary {{ Fill in the Description }} ## OUTPUTS -### System.Boolean +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp {{ Fill in the Description }} @@ -428,7 +497,13 @@ 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 +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 @@ -458,27 +533,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalOwnerByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [](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..64f7f3d745c9a 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 --- @@ -16,9 +16,6 @@ title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguration object on the servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,6 @@ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguration object on the servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -98,10 +84,6 @@ $params = @{ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -516,13 +498,13 @@ 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 ``: targetDeviceGroup +BODYPARAMETER : targetDeviceGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -552,27 +534,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-1.0) 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..d9600e3c66575 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 --- @@ -17,9 +17,6 @@ Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,7 @@ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +39,7 @@ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +52,7 @@ New-MgServicePrincipalSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +62,7 @@ New-MgServicePrincipalSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +76,9 @@ Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -100,10 +88,6 @@ $params = @{ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -658,7 +642,7 @@ 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 ``: synchronizationJob +BODYPARAMETER : synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -885,7 +869,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -912,7 +896,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE ``: synchronizationSchedule +SCHEDULE : synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -922,7 +906,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1060,7 +1044,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS ``: synchronizationStatus +STATUS : synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1136,27 +1120,5 @@ Some settings are inherited from the template. ## RELATED LINKS -- [New-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-1.0) 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..089b59b55db35 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 --- @@ -16,9 +16,6 @@ title: New-MgServicePrincipalSynchronizationJobOnDemand Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJobOnDemand](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJobOnDemand?view=graph-powershell-beta) - ## SYNTAX ### ProvisionExpanded (Default) @@ -30,7 +27,7 @@ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId [-Parameters ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Provision @@ -42,7 +39,6 @@ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ProvisionViaIdentityExpanded @@ -53,7 +49,7 @@ New-MgServicePrincipalSynchronizationJobOnDemand -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### ProvisionViaIdentity @@ -64,7 +60,6 @@ New-MgServicePrincipalSynchronizationJobOnDemand -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Provision users from Microsoft Entra ID to third-party applications -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -108,12 +94,7 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -``` -This example will provision users from microsoft entra id to third-party applications - -### Example 2: Sync on-demand from Active Directory to Microsoft Entra ID (Microsoft Entra Cloud Sync) - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Applications @@ -133,12 +114,7 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -``` -This example will sync on-demand from active directory to microsoft entra id (microsoft entra cloud sync) - -### Example 3: Provision a group and two of its members on demand - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.Applications @@ -170,10 +146,6 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -``` -This example will provision a group and two of its members on demand - - ## PARAMETERS ### -AdditionalProperties @@ -205,7 +177,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -367,7 +339,7 @@ HelpMessage: '' ### -Parameters - +. To construct, see NOTES section for PARAMETERS properties and create a hash table. ```yaml @@ -588,7 +560,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Parameters ]: [RuleId ]: The identifier of the synchronizationRule to be applied. @@ -605,7 +577,7 @@ Can be one of the following: An onPremisesDistinguishedName for synchronization Can be one of the following: user for synchronizing between Active Directory and Azure AD.User for synchronizing a user between Microsoft Entra ID and a third-party application. Worker for synchronization a user between Workday and either Active Directory or Microsoft Entra ID.Group for synchronizing a group between Microsoft Entra ID and a third-party application. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -650,27 +622,5 @@ Worker for synchronization a user between Workday and either Active Directory or ## RELATED LINKS -- [New-MgServicePrincipalSynchronizationJobOnDemand](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) 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..2a44e1a9dc4c1 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalSynchronizationJobSchemaDirectory Create new navigation property to directories for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,7 @@ New-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to directories for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -655,7 +661,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -708,7 +714,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -778,27 +784,4 @@ Not nullable. ## RELATED LINKS -- [New-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory) 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..715369ca905cb 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalSynchronizationTemplate Create new navigation property to templates for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +49,6 @@ New-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +58,7 @@ New-MgServicePrincipalSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to templates for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -656,7 +661,7 @@ 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 ``: synchronizationTemplate +BODYPARAMETER : synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -808,7 +813,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -840,7 +845,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -981,27 +986,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [New-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate) 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..5fc6dbdc1fd4d 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalSynchronizationTemplateSchemaDirectory Create new navigation property to directories for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,7 @@ New-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to directories for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -655,7 +661,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -708,7 +714,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -778,27 +784,4 @@ Not nullable. ## RELATED LINKS -- [New-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory) 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..7a80e2874d497 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 --- @@ -15,9 +15,6 @@ title: New-MgServicePrincipalTokenIssuancePolicyByRef Create new navigation property ref to tokenIssuancePolicies for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId -Oda [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property ref to tokenIssuancePolicies for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -104,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -481,12 +484,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -516,27 +519,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref) 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..d58b3031b4272 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 --- @@ -16,9 +16,6 @@ title: New-MgServicePrincipalTokenLifetimePolicyByRef Assign a tokenLifetimePolicy to a servicePrincipal. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId -Oda [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +46,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +56,6 @@ New-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Assign a tokenLifetimePolicy to a servicePrincipal. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -96,10 +80,6 @@ $params = @{ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the New-MgServicePrincipalTokenLifetimePolicyByRef Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -508,12 +488,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -543,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-1.0) 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..edad0b4a065d5 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 --- @@ -15,9 +15,6 @@ title: New-MgUserAppRoleAssignment Grant an app role assignment to an agentUser. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgUserAppRoleAssignment -UserId [-ResponseHeadersVariable ] [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,6 @@ New-MgUserAppRoleAssignment -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgUserAppRoleAssignment -InputObject [-ResponseHeade [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +57,7 @@ New-MgUserAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +69,10 @@ This cmdlet has the following aliases, Grant an app role assignment to an agentUser. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Assign a user an application role -```powershell +### EXAMPLE 1 + New-MgUserAppRoleAssignment -Userid '8a7c50d3-fcbd-4727-a889-8ab232dfea01' ` -PrincipalId '8a7c50d3-fcbd-4727-a889-8ab232dfea01' ` -ResourceId '0873169c-9595-4664-9d02-499b49846ff1' ` @@ -99,9 +87,6 @@ PrincipalId : 8a7c50d3-fcbd-4727-a889-8ab232dfea01 PrincipalType : User ResourceDisplayName : dxprovisioning-analytics ResourceId : 0873169c-9595-4664-9d02-499b49846ff1 -``` - -This commands assigns the specified user a role in the specified application resource. ## PARAMETERS @@ -723,7 +708,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -753,7 +738,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -783,27 +768,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/agentuser-post-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment) +- [](https://learn.microsoft.com/graph/api/agentuser-post-approleassignments?view=graph-rest-1.0) 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..27c74f821f66f 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 --- @@ -18,9 +18,6 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplication?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -30,7 +27,6 @@ Remove-MgApplication -ApplicationId [-IfMatch ] [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgApplication -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,22 +50,11 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Delete an application -```powershell -Remove-MgApplication -ApplicationId '1bc44759-ef10-46de-b199-40c077768fff' -``` +### EXAMPLE 1 -This example deletes the specified application. +Remove-MgApplication -ApplicationId '1bc44759-ef10-46de-b199-40c077768fff' ## PARAMETERS @@ -403,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -433,27 +417,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication) +- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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..d24d87f835633 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 --- @@ -16,9 +16,6 @@ title: Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -AppManagementPo [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +48,13 @@ Remove an appManagementPolicy policy object from an application or service princ When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -ApplicationId $applicationId -AppManagementPolicyId $appManagementPolicyId -``` -This example shows how to use the Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -417,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -447,27 +437,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref) +- [](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) 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 deleted file mode 100644 index 00b8d3c2ecbf8..0000000000000 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md +++ /dev/null @@ -1,473 +0,0 @@ ---- -document type: cmdlet -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 -PlatyPS schema version: 2024-05-01 -title: Remove-MgApplicationAppManagementPolicyByRef ---- - -# Remove-MgApplicationAppManagementPolicyByRef - -## SYNOPSIS - -Remove an appManagementPolicy policy object from an application or service principal object. -When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef?view=graph-powershell-beta) - -## SYNTAX - -### Delete (Default) - -``` -Remove-MgApplicationAppManagementPolicyByRef -AppManagementPolicyId - -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] - [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] -``` - -### DeleteViaIdentity - -``` -Remove-MgApplicationAppManagementPolicyByRef -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 - -Remove an appManagementPolicy policy object from an application or service principal object. -When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. - -## EXAMPLES -### Example 1: Code snippet - -```powershell - -Import-Module Microsoft.Graph.Applications - -Remove-MgApplicationAppManagementPolicyByRef -ApplicationId $applicationId -AppManagementPolicyId $appManagementPolicyId - -``` -This example shows how to use the Remove-MgApplicationAppManagementPolicyByRef Cmdlet. - - -## PARAMETERS - -### -ApplicationId - -The unique identifier of application - -```yaml -Type: System.String -DefaultValue: '' -SupportsWildcards: false -Aliases: -- ObjectId -ParameterSets: -- Name: Delete - Position: Named - IsRequired: true - ValueFromPipeline: false - ValueFromPipelineByPropertyName: false - ValueFromRemainingArguments: false -DontShow: false -AcceptedValues: [] -HelpMessage: '' -``` - -### -AppManagementPolicyId - -The unique identifier of appManagementPolicy - -```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: '' -``` - -### -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-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationAppManagementPolicyByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - 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..a4f761340551b 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 --- @@ -18,9 +18,6 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationByAppId?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -30,7 +27,6 @@ Remove-MgApplicationByAppId -AppId [-IfMatch ] [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgApplicationByAppId -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,6 +50,16 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AppId @@ -385,7 +390,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -415,28 +420,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid) +- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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..bdc0c332adfe7 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 --- @@ -18,9 +18,6 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationByUniqueName?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -30,7 +27,6 @@ Remove-MgApplicationByUniqueName -UniqueName [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgApplicationByUniqueName -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,6 +50,16 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -385,7 +390,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -415,28 +420,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename) +- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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..50b50945ff7e3 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 --- @@ -16,9 +16,6 @@ title: Remove-MgApplicationExtensionProperty Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationExtensionProperty -InputObject [-IfM [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId -``` -This example shows how to use the Remove-MgApplicationExtensionProperty Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -424,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -454,27 +436,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty) -- [Graph API Reference](https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty) +- [](https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-1.0) 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..03ba83a6e249f 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationFederatedIdentityCredential Delete a federatedIdentityCredential object from an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationFederatedIdentityCredential -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationFederatedIdentityCredential -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Delete a federatedIdentityCredential object from an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -``` -This example shows how to use the Remove-MgApplicationFederatedIdentityCredential Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) 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..65aadea3ab96e 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationFederatedIdentityCredentialByName Delete a federatedIdentityCredential object from an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgApplicationFederatedIdentityCredentialByName -ApplicationId -N [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete a federatedIdentityCredential object from an application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,28 +436,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) 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..77359abca54e5 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 --- @@ -16,9 +16,6 @@ title: Remove-MgApplicationKey Remove a key credential from an agentIdentityBlueprint. This method along with addKey can be used to automate rolling its expiring keys. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationKey](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationKey?view=graph-powershell-beta) - ## SYNTAX ### RemoveExpanded (Default) @@ -29,7 +26,6 @@ Remove-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -40,7 +36,6 @@ Remove-MgApplicationKey -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -51,7 +46,6 @@ Remove-MgApplicationKey -InputObject [-ResponseHeadersVa [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -62,7 +56,6 @@ Remove-MgApplicationKey -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Remove a key credential from an agentIdentityBlueprint. This method along with addKey can be used to automate rolling its expiring keys. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -97,10 +81,6 @@ $params = @{ Remove-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the Remove-MgApplicationKey Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -160,7 +140,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -322,7 +302,7 @@ HelpMessage: '' ### -KeyId - +. ```yaml Type: System.String @@ -368,8 +348,9 @@ AcceptedValues: [] HelpMessage: '' ``` +### -Proof - +. ```yaml Type: System.String @@ -535,12 +516,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: [Proof ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -570,27 +551,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey) -- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-removekey?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey) +- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-removekey?view=graph-rest-1.0) 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..4205d74830841 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 --- @@ -16,9 +16,6 @@ title: Remove-MgApplicationLogo The main logo for the application. Not nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationLogo?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationLogo -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationLogo -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -382,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -412,27 +417,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo) 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..16e2da5beae8f 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 --- @@ -16,9 +16,6 @@ title: Remove-MgApplicationOwnerDirectoryObjectByRef Remove an owner from an application. As a recommended best practice, apps should have at least two owners. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationOwnerDirectoryObjectByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationOwnerDirectoryObjectByRef -ApplicationId -Directory [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationOwnerDirectoryObjectByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Remove an owner from an application. As a recommended best practice, apps should have at least two owners. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationOwnerDirectoryObjectByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId -``` -This example shows how to use the Remove-MgApplicationOwnerDirectoryObjectByRef Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -424,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -454,27 +436,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationOwnerDirectoryObjectByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref) +- [](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) 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..e0eb7d0509534 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationPassword Remove a password from an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationPassword](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationPassword?view=graph-powershell-beta) - ## SYNTAX ### RemoveExpanded (Default) @@ -27,7 +24,6 @@ Remove-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable < [-AdditionalProperties ] [-KeyId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Remove @@ -38,7 +34,6 @@ Remove-MgApplicationPassword -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentityExpanded @@ -49,7 +44,6 @@ Remove-MgApplicationPassword -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RemoveViaIdentity @@ -60,7 +54,6 @@ Remove-MgApplicationPassword -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,18 +65,9 @@ This cmdlet has the following aliases, Remove a password from an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -93,10 +77,6 @@ $params = @{ Remove-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the Remove-MgApplicationPassword Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -156,7 +136,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -318,7 +298,7 @@ HelpMessage: '' ### -KeyId - +. ```yaml Type: System.String @@ -505,11 +485,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -539,27 +519,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword) +- [](https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0) 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..ea76ac2111733 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronization Delete navigation property synchronization for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronization?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgApplicationSynchronization -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgApplicationSynchronization -InputObject [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property synchronization for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -380,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -410,27 +415,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization) 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..81c03941a20d9 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationJob Delete navigation property jobs for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgApplicationSynchronizationJob -InputObject [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property jobs for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob) 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..14130d0a327ed 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationJobBulkUpload Delete navigation property bulkUpload for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationJobBulkUpload -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property bulkUpload for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +437,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload) 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..b2079a6f80e76 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationJobBulkUploadContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +437,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent) 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..d05a4f6f046a7 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationJobSchema Delete navigation property schema for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgApplicationSynchronizationJobSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property schema for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema) 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..70ac9ec1228a3 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationJobSchemaDirectory Delete navigation property directories for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property directories for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -423,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +458,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory) 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..9f20ed0b40348 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationTemplate Delete navigation property templates for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationTemplate -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property templates for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +437,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate) 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..84eb8ab0dae6b 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationTemplateSchema Delete navigation property schema for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationTemplateSchema -ApplicationId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationTemplateSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +45,15 @@ This cmdlet has the following aliases, Delete navigation property schema for applications -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -410,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -440,27 +437,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema) 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..34b5d25bbddec 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationSynchronizationTemplateSchemaDirectory Delete navigation property directories for applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property directories for applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -423,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +458,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory) 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 deleted file mode 100644 index 95f1a7b1ad14c..0000000000000 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ /dev/null @@ -1,479 +0,0 @@ ---- -document type: cmdlet -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 -PlatyPS schema version: 2024-05-01 -title: Remove-MgApplicationTokenIssuancePolicyByRef ---- - -# Remove-MgApplicationTokenIssuancePolicyByRef - -## SYNOPSIS - -Remove a tokenIssuancePolicy from an application. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) - -## SYNTAX - -### Delete (Default) - -``` -Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId - -TokenIssuancePolicyId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] - [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] -``` - -### DeleteViaIdentity - -``` -Remove-MgApplicationTokenIssuancePolicyByRef -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 - -Remove a tokenIssuancePolicy from an application. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - -## EXAMPLES -### Example 1: Code snippet - -```powershell - -Import-Module Microsoft.Graph.Applications - -Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId - -``` -This example shows how to use the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet. - - -## PARAMETERS - -### -ApplicationId - -The unique identifier of application - -```yaml -Type: System.String -DefaultValue: '' -SupportsWildcards: false -Aliases: -- ObjectId -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: '' -``` - -### -TokenIssuancePolicyId - -The unique identifier of tokenIssuancePolicy - -```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-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenIssuancePolicyByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - 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..1418cf616cebc 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef Remove a tokenIssuancePolicy from an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -ApplicationId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Remove a tokenIssuancePolicy from an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId -``` -This example shows how to use the Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) 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..6432996408400 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 --- @@ -15,9 +15,6 @@ title: Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef Remove a tokenLifetimePolicy from an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -ApplicationId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy from an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId -``` -This example shows how to use the Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef Cmdlet. - - ## PARAMETERS ### -ApplicationId @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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..5c13ec9f2b8cf 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 --- @@ -15,9 +15,6 @@ title: Remove-MgGroupAppRoleAssignment Deletes an appRoleAssignment that a group has been granted. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupAppRoleAssignment -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Deletes an appRoleAssignment that a group has been granted. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId -``` -This example shows how to use the Remove-MgGroupAppRoleAssignment Cmdlet. - - ## PARAMETERS ### -AppRoleAssignmentId @@ -421,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -451,27 +433,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment) +- [](https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0) 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..d455164c1bdd0 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipal Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipal -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipal -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, AgentIdentity.DeleteRestore.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Remove-MgServicePrincipal Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +414,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) 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..bd3a112da4808 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalAppRoleAssignedTo Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId -``` -This example shows how to use the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet. - - ## PARAMETERS ### -AppRoleAssignmentId @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -452,27 +434,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-1.0) 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..9e8b90a6150f0 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 --- @@ -17,9 +17,6 @@ Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -30,7 +27,6 @@ Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgServicePrincipalAppRoleAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,22 +49,11 @@ Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Remove the application role assignment for a service principal -```powershell -Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId 'PRLbC6e4yUyMwr0XutBvYZsr7FiAW3pIqP4F9944yBc' -ServicePrincipalId '0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61' -``` +### EXAMPLE 1 -This example removed the assignment of the specified service principal to the specified application role id. +Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId 'PRLbC6e4yUyMwr0XutBvYZsr7FiAW3pIqP4F9944yBc' -ServicePrincipalId '0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61' ## PARAMETERS @@ -422,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -452,27 +436,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-1.0) 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..1440709015099 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipalByAppId Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalByAppId -AppId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalByAppId -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AppId @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -411,28 +416,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) 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..1e5cc59e77b2f 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef Remove a claimsMappingPolicy from a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef -ClaimsMappin [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Remove a claimsMappingPolicy from a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId -``` -This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef Cmdlet. - - ## PARAMETERS ### -Break @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) 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..ff090cedf8a3a 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalDelegatedPermissionClassification Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalDelegatedPermissionClassification [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.PermissionGrant, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.PermissionGrant, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId -``` -This example shows how to use the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -452,27 +434,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-1.0) 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..ccfeadbfcfe54 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalEndpoint Delete navigation property endpoints for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgServicePrincipalEndpoint -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property endpoints for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -430,27 +435,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint) 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..c54187879b5a4 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicy Remove a homeRealmDiscoveryPolicy from a servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Remove a homeRealmDiscoveryPolicy from a servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId -``` -This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef Cmdlet. - - ## PARAMETERS ### -Break @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) 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..8597e96c11a33 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 @@ -74,18 +70,9 @@ Remove a key credential from a servicePrincipal. This method along with addKey can be used by a servicePrincipal to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -96,10 +83,6 @@ $params = @{ Remove-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Remove-MgServicePrincipalKey Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +114,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -293,7 +276,7 @@ HelpMessage: '' ### -KeyId - +. ```yaml Type: System.String @@ -339,8 +322,9 @@ AcceptedValues: [] HelpMessage: '' ``` +### -Proof - +. ```yaml Type: System.String @@ -533,12 +517,12 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: [Proof ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -568,27 +552,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0) 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..a9cd71f5234b4 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipalOwnerDirectoryObjectByRef Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -DirectoryObjectId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +47,9 @@ This cmdlet has the following aliases, Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -73,10 +59,6 @@ $params = @{ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -ServicePrincipalId $servicePrincipalId -DirectoryObjectId $directoryObjectId -BodyParameter $params -``` -This example shows how to use the Remove-MgServicePrincipalOwnerDirectoryObjectByRef Cmdlet. - - ## PARAMETERS ### -Break @@ -428,7 +410,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -458,27 +440,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalOwnerDirectoryObjectByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) 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..90144839c829c 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 @@ -69,18 +65,9 @@ This cmdlet has the following aliases, Remove a password from a servicePrincipal object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -90,10 +77,6 @@ $params = @{ Remove-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Remove-MgServicePrincipalPassword Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -125,7 +108,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -287,7 +270,7 @@ HelpMessage: '' ### -KeyId - +. ```yaml Type: System.String @@ -501,11 +484,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -535,27 +518,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0) 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..26d710ffa10fc 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId -``` -This example shows how to use the Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +414,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md similarity index 82% rename from microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md rename to microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md index 8b0b4ade47c61..cca0a2581337e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -1,45 +1,40 @@ --- document type: cmdlet external help file: Microsoft.Graph.Applications-Help.xml -HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp Locale: 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 +title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp --- -# Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef +# Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp ## SYNOPSIS -Remove a homeRealmDiscoveryPolicy from a servicePrincipal. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) +Delete approvedClientApp ## SYNTAX ### Delete (Default) ``` -Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef - -HomeRealmDiscoveryPolicyId -ServicePrincipalId [-IfMatch ] +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity ``` -Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,30 +44,38 @@ This cmdlet has the following aliases, ## DESCRIPTION -Remove a homeRealmDiscoveryPolicy from a servicePrincipal. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +Delete approvedClientApp ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications -Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId +Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId -``` -This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. +## PARAMETERS +### -ApprovedClientAppId -## PARAMETERS +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 @@ -138,27 +141,6 @@ AcceptedValues: [] HelpMessage: '' ``` -### -HomeRealmDiscoveryPolicyId - -The unique identifier of homeRealmDiscoveryPolicy - -```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: '' -``` - ### -HttpPipelineAppend SendAsync Pipeline Steps to be appended to the front of the pipeline @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [](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..2097a3b521d92 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGr Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,13 +48,15 @@ This cmdlet has the following aliases, Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -412,7 +409,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -442,28 +439,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-1.0) 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..e17d3c2bbcde7 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronization Delete navigation property synchronization for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgServicePrincipalSynchronization -ServicePrincipalId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgServicePrincipalSynchronization -InputObject [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property synchronization for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -409,27 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization) 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..dbc37aaa64e6f 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 --- @@ -16,9 +16,6 @@ title: Remove-MgServicePrincipalSynchronizationJob Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,27 +47,14 @@ This cmdlet has the following aliases, Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Remove-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -Break @@ -424,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -454,27 +436,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-1.0) 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..63b2b13ad3edc 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationJobBulkUpload Delete navigation property bulkUpload for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property bulkUpload for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload) 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..ccaefebcc69df 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationJobBulkUploadContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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..569a1418ae40e 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationJobSchema Delete navigation property schema for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +45,15 @@ This cmdlet has the following aliases, Delete navigation property schema for servicePrincipals -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| 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, | +{{ Add code here }} ## PARAMETERS @@ -409,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -439,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema) 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..beb53d23b9caf 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationJobSchemaDirectory Delete navigation property directories for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property directories for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -422,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -452,27 +457,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory) 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..78a1db501bcd2 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationTemplate Delete navigation property templates for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationTemplate -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property templates for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate) 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..abfcc9fb5fcf0 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationTemplateSchema Delete navigation property schema for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property schema for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -431,27 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema) 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..712ccaf69e6dc 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory Delete navigation property directories for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property directories for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -422,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -452,27 +457,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory) 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..28d8eb6429ba7 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalTokenIssuancePolicyByRef Delete ref of navigation property tokenIssuancePolicies for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyByRef -ServicePrincipalId - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete ref of navigation property tokenIssuancePolicies for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -430,27 +435,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref) 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..0beabc50f6f66 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef Delete ref of navigation property tokenIssuancePolicies for servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef -ServicePri [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete ref of navigation property tokenIssuancePolicies for servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -432,27 +437,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref) 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..39dbf3ad3bbc8 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalTokenLifetimePolicyByRef Remove a tokenLifetimePolicy object from a service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy object from a service principal. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -430,28 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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..30ff71a069bf4 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 --- @@ -15,9 +15,6 @@ title: Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef Remove a tokenLifetimePolicy object from a service principal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef -ServicePri [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy object from a service principal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef -ServicePrincipalId $servicePrincipalId -TokenLifetimePolicyId $tokenLifetimePolicyId -``` -This example shows how to use the Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef Cmdlet. - - ## PARAMETERS ### -Break @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -453,27 +435,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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..3afc56c529b94 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 --- @@ -15,9 +15,6 @@ title: Remove-MgUserAppRoleAssignment Delete an appRoleAssignment that has been granted to a user. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserAppRoleAssignment -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,24 +44,13 @@ This cmdlet has the following aliases, Delete an appRoleAssignment that has been granted to a user. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | AppRoleAssignment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Remove a user's application role assignment -```powershell +### EXAMPLE 1 + Remove-MgUserAppRoleAssignment ` -AppRoleAssignmentID '01B8ir38J0eoiYqyMt_qAVDX9vgSB6xDur4zn5zOluM' ` -UserId '8a7c50d3-fcbd-4727-a889-8ab232dfea01' -``` - -This example removes the specified application role from the specified user. ## PARAMETERS @@ -419,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -449,27 +433,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/user-delete-approleassignments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment) +- [](https://learn.microsoft.com/graph/api/user-delete-approleassignments?view=graph-rest-1.0) 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..d4eaa5053bcd3 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 --- @@ -16,9 +16,6 @@ title: Restart-MgApplicationSynchronizationJob Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. -> [!NOTE] -> To view the beta release of this cmdlet, view [Restart-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Restart-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### RestartExpanded (Default) @@ -29,7 +26,6 @@ Restart-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-Criteria ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Restart @@ -40,7 +36,6 @@ Restart-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentityExpanded @@ -51,7 +46,6 @@ Restart-MgApplicationSynchronizationJob -InputObject [-Criteria ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentity @@ -62,7 +56,6 @@ Restart-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,16 @@ This cmdlet has the following aliases, Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -134,7 +137,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -511,17 +514,17 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Criteria ]: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -CRITERIA ``: synchronizationJobRestartCriteria +CRITERIA : synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -551,28 +554,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restart-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) 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..2033864443ccc 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 --- @@ -16,9 +16,6 @@ title: Restart-MgServicePrincipalSynchronizationJob Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. -> [!NOTE] -> To view the beta release of this cmdlet, view [Restart-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Restart-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### RestartExpanded (Default) @@ -30,7 +27,6 @@ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Restart @@ -42,7 +38,6 @@ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentityExpanded @@ -53,7 +48,6 @@ Restart-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestartViaIdentity @@ -64,7 +58,6 @@ Restart-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +70,9 @@ This cmdlet has the following aliases, Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -100,10 +84,6 @@ $params = @{ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -``` -This example shows how to use the Restart-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -135,7 +115,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -539,17 +519,17 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Criteria ]: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -CRITERIA ``: synchronizationJobRestartCriteria +CRITERIA : synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -579,27 +559,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restart-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) 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..35f520719e543 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 --- @@ -16,9 +16,6 @@ title: Set-MgApplicationLogo The main logo for the application. Not nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationLogo?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,6 @@ Set-MgApplicationLogo -ApplicationId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -38,7 +34,6 @@ Set-MgApplicationLogo -InputObject -InFile [-Da [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,13 +46,15 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -149,7 +146,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -442,7 +439,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -472,27 +469,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo) 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..c6937d15fcfce 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 --- @@ -15,9 +15,6 @@ title: Set-MgApplicationSynchronization Update the navigation property synchronization in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronization?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgApplicationSynchronization -ApplicationId [-ResponseHeadersVariab [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -39,7 +35,7 @@ Set-MgApplicationSynchronization -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentityExpanded @@ -52,7 +48,6 @@ Set-MgApplicationSynchronization -InputObject [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +57,7 @@ Set-MgApplicationSynchronization -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +69,16 @@ This cmdlet has the following aliases, Update the navigation property synchronization in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -546,7 +551,7 @@ 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 ``: synchronization +BODYPARAMETER : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -793,7 +798,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Value ]: Value of the metadata property. [Schema ]: synchronizationSchema -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -1204,27 +1209,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Set-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization) 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..9483e9fac2a7b 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 --- @@ -15,9 +15,6 @@ title: Set-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,6 @@ Set-MgApplicationSynchronizationJobBulkUploadContent -ApplicationId [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -39,7 +35,6 @@ Set-MgApplicationSynchronizationJobBulkUploadContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -141,7 +146,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -455,7 +460,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -485,27 +490,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent) 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..fea381f0ad83d 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 --- @@ -15,9 +15,6 @@ title: Set-MgApplicationSynchronizationSecret Update property secrets value. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronizationSecret](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronizationSecret?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -28,7 +25,7 @@ Set-MgApplicationSynchronizationSecret -ApplicationId [-ResponseHeaders [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Set @@ -39,7 +36,6 @@ Set-MgApplicationSynchronizationSecret -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +46,7 @@ Set-MgApplicationSynchronizationSecret -InputObject [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -61,7 +57,6 @@ Set-MgApplicationSynchronizationSecret -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +68,16 @@ This cmdlet has the following aliases, Update property secrets value. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -132,7 +137,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -379,7 +384,7 @@ HelpMessage: '' ### -Value - +. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml @@ -461,13 +466,13 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Value ]: [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -501,27 +506,4 @@ VALUE : . ## RELATED LINKS -- [Set-MgApplicationSynchronizationSecret](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret) 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..8f2a79a829ad6 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 --- @@ -16,9 +16,6 @@ title: Set-MgApplicationVerifiedPublisher Set the the verifiedPublisher on an agentIdentityBlueprint. For more information, including prerequisites to setting a verified publisher, see Publisher verification. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaApplicationVerifiedPublisher](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationVerifiedPublisher?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVari [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgApplicationVerifiedPublisher -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgApplicationVerifiedPublisher -InputObject [-VerifiedPublisherId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgApplicationVerifiedPublisher -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,9 +69,8 @@ Set the the verifiedPublisher on an agentIdentityBlueprint. For more information, including prerequisites to setting a verified publisher, see Publisher verification. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -88,10 +80,6 @@ $params = @{ Set-MgApplicationVerifiedPublisher -ApplicationId $applicationId -BodyParameter $params -``` -This example shows how to use the Set-MgApplicationVerifiedPublisher Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -151,7 +139,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -419,7 +407,7 @@ HelpMessage: '' ### -VerifiedPublisherId - +. ```yaml Type: System.String @@ -500,11 +488,11 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [VerifiedPublisherId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -534,27 +522,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgApplicationVerifiedPublisher](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher) -- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-setverifiedpublisher?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher) +- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-setverifiedpublisher?view=graph-rest-1.0) 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..db531fa851abe 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 --- @@ -15,9 +15,6 @@ title: Set-MgServicePrincipalSynchronization Update the navigation property synchronization in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -30,7 +27,6 @@ Set-MgServicePrincipalSynchronization -ServicePrincipalId [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,7 @@ Set-MgServicePrincipalSynchronization -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentityExpanded @@ -53,7 +49,6 @@ Set-MgServicePrincipalSynchronization -InputObject [-Templates ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +58,7 @@ Set-MgServicePrincipalSynchronization -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property synchronization in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -546,7 +551,7 @@ 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 ``: synchronization +BODYPARAMETER : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -793,7 +798,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Value ]: Value of the metadata property. [Schema ]: synchronizationSchema -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -1204,27 +1209,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Set-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization) 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..c62a457eacb79 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 --- @@ -15,9 +15,6 @@ title: Set-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,6 @@ Set-MgServicePrincipalSynchronizationJobBulkUploadContent -ServicePrincipalId ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -39,7 +35,6 @@ Set-MgServicePrincipalSynchronizationJobBulkUploadContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The bulk upload operation for the job. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -119,7 +124,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -454,7 +459,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -484,27 +489,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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..4c592a2c60e09 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 --- @@ -15,9 +15,6 @@ title: Set-MgServicePrincipalSynchronizationSecret Provide credentials for establishing connectivity with the target system. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronizationSecret](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronizationSecret?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -28,7 +25,7 @@ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Set @@ -39,7 +36,6 @@ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +46,7 @@ Set-MgServicePrincipalSynchronizationSecret -InputObject [-Value ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -61,7 +57,6 @@ Set-MgServicePrincipalSynchronizationSecret -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Provide credentials for establishing connectivity with the target system. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -111,10 +97,6 @@ $params = @{ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Set-MgServicePrincipalSynchronizationSecret Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -146,7 +128,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -420,7 +402,7 @@ HelpMessage: '' ### -Value - +. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml @@ -502,13 +484,13 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Value ]: [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -542,27 +524,5 @@ VALUE : . ## RELATED LINKS -- [Set-MgServicePrincipalSynchronizationSecret](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-serviceprincipal-put-synchronization?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret) +- [](https://learn.microsoft.com/graph/api/synchronization-serviceprincipal-put-synchronization?view=graph-rest-1.0) 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..e2b49c9083773 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 --- @@ -19,9 +19,6 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. -> [!NOTE] -> To view the beta release of this cmdlet, view [Start-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Start-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Start (Default) @@ -31,7 +28,6 @@ Start-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJo [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -41,7 +37,6 @@ Start-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +52,16 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -388,7 +393,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -418,28 +423,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Start-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) 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..b75023c060ef2 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 --- @@ -19,9 +19,6 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. -> [!NOTE] -> To view the beta release of this cmdlet, view [Start-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Start-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Start (Default) @@ -32,7 +29,6 @@ Start-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -42,7 +38,6 @@ Start-MgServicePrincipalSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -58,27 +53,14 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Start-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Start-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -Break @@ -409,7 +391,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -439,27 +421,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Start-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) 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..b4932c859e4a1 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 --- @@ -16,9 +16,6 @@ title: Suspend-MgApplicationSynchronizationJob Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. -> [!NOTE] -> To view the beta release of this cmdlet, view [Suspend-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Suspend-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Pause (Default) @@ -28,7 +25,6 @@ Suspend-MgApplicationSynchronizationJob -ApplicationId -Synchronization [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PauseViaIdentity @@ -38,7 +34,6 @@ Suspend-MgApplicationSynchronizationJob -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ApplicationId @@ -382,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -412,28 +417,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Suspend-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) 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..71513ded04950 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 --- @@ -16,9 +16,6 @@ title: Suspend-MgServicePrincipalSynchronizationJob Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. -> [!NOTE] -> To view the beta release of this cmdlet, view [Suspend-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Suspend-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### Pause (Default) @@ -29,7 +26,6 @@ Suspend-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PauseViaIdentity @@ -39,7 +35,6 @@ Suspend-MgServicePrincipalSynchronizationJob -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,27 +47,14 @@ This cmdlet has the following aliases, Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications Suspend-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -``` -This example shows how to use the Suspend-MgServicePrincipalSynchronizationJob Cmdlet. - - ## PARAMETERS ### -Break @@ -403,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -433,27 +415,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Suspend-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) 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..3566382ef82e2 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 --- @@ -16,17 +16,14 @@ title: Test-MgApplicationProperty Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r1. -Validate the prefix and suffix naming policy\r2. -Validate the custom banned words policy\r3. +The following policy validations are performed for the display name and mail nickname properties:\r\n1. +Validate the prefix and suffix naming policy\r\n2. +Validate the custom banned words policy\r\n3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Test-MgBetaApplicationProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaApplicationProperty?view=graph-powershell-beta) - ## SYNTAX ### ValidateExpanded (Default) @@ -37,7 +34,6 @@ Test-MgApplicationProperty [-ResponseHeadersVariable ] [-AdditionalPrope [-OnBehalfOfUserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -48,7 +44,6 @@ Test-MgApplicationProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -61,14 +56,24 @@ This cmdlet has the following aliases, Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r1. -Validate the prefix and suffix naming policy\r2. -Validate the custom banned words policy\r3. +The following policy validations are performed for the display name and mail nickname properties:\r\n1. +Validate the prefix and suffix naming policy\r\n2. +Validate the custom banned words policy\r\n3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -94,7 +99,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -159,7 +164,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -180,7 +185,7 @@ HelpMessage: '' ### -EntityType - +. ```yaml Type: System.String @@ -264,7 +269,7 @@ HelpMessage: '' ### -MailNickname - +. ```yaml Type: System.String @@ -285,7 +290,7 @@ HelpMessage: '' ### -OnBehalfOfUserId - +. ```yaml Type: System.String @@ -462,7 +467,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EntityType ]: @@ -472,28 +477,5 @@ BODYPARAMETER ` [!NOTE] -> To view the beta release of this cmdlet, view [Test-MgBetaApplicationSynchronizationJobCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaApplicationSynchronizationJobCredential?view=graph-powershell-beta) - ## SYNTAX ### ValidateExpanded (Default) @@ -30,7 +27,6 @@ Test-MgApplicationSynchronizationJobCredential -ApplicationId [-UseSavedCredentials] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -42,7 +38,6 @@ Test-MgApplicationSynchronizationJobCredential -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentityExpanded @@ -55,7 +50,6 @@ Test-MgApplicationSynchronizationJobCredential -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentity @@ -66,7 +60,6 @@ Test-MgApplicationSynchronizationJobCredential -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,6 +71,16 @@ This cmdlet has the following aliases, Validate that the credentials are valid in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -137,7 +140,7 @@ HelpMessage: '' ### -ApplicationIdentifier - +. ```yaml Type: System.String @@ -164,7 +167,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -235,7 +238,7 @@ HelpMessage: '' ### -Credentials - +. To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -487,7 +490,7 @@ HelpMessage: '' ### -TemplateId - +. ```yaml Type: System.String @@ -514,7 +517,7 @@ HelpMessage: '' ### -UseSavedCredentials - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -595,7 +598,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ApplicationIdentifier ]: [Credentials ]: @@ -608,7 +611,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -638,28 +641,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Test-MgApplicationSynchronizationJobCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) 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..babc703d30b5f 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 --- @@ -16,17 +16,14 @@ title: Test-MgServicePrincipalProperty Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r1. -Validate the prefix and suffix naming policy\r2. -Validate the custom banned words policy\r3. +The following policy validations are performed for the display name and mail nickname properties:\r\n1. +Validate the prefix and suffix naming policy\r\n2. +Validate the custom banned words policy\r\n3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Test-MgBetaServicePrincipalProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaServicePrincipalProperty?view=graph-powershell-beta) - ## SYNTAX ### ValidateExpanded (Default) @@ -37,7 +34,6 @@ Test-MgServicePrincipalProperty [-ResponseHeadersVariable ] [-MailNickname ] [-OnBehalfOfUserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -48,7 +44,6 @@ Test-MgServicePrincipalProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -61,14 +56,24 @@ This cmdlet has the following aliases, Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r1. -Validate the prefix and suffix naming policy\r2. -Validate the custom banned words policy\r3. +The following policy validations are performed for the display name and mail nickname properties:\r\n1. +Validate the prefix and suffix naming policy\r\n2. +Validate the custom banned words policy\r\n3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -94,7 +99,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -159,7 +164,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -180,7 +185,7 @@ HelpMessage: '' ### -EntityType - +. ```yaml Type: System.String @@ -264,7 +269,7 @@ HelpMessage: '' ### -MailNickname - +. ```yaml Type: System.String @@ -285,7 +290,7 @@ HelpMessage: '' ### -OnBehalfOfUserId - +. ```yaml Type: System.String @@ -462,7 +467,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EntityType ]: @@ -472,28 +477,5 @@ BODYPARAMETER ` [!NOTE] -> To view the beta release of this cmdlet, view [Test-MgBetaServicePrincipalSynchronizationJobCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaServicePrincipalSynchronizationJobCredential?view=graph-powershell-beta) - ## SYNTAX ### ValidateExpanded (Default) @@ -30,7 +27,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -ServicePrincipalId [-UseSavedCredentials] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Validate @@ -42,7 +38,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentityExpanded @@ -55,7 +50,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ValidateViaIdentity @@ -66,7 +60,6 @@ Test-MgServicePrincipalSynchronizationJobCredential -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,13 +71,15 @@ This cmdlet has the following aliases, Validate that the credentials are valid in the tenant. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -117,7 +112,7 @@ HelpMessage: '' ### -ApplicationIdentifier - +. ```yaml Type: System.String @@ -144,7 +139,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -215,7 +210,7 @@ HelpMessage: '' ### -Credentials - +. To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -494,7 +489,7 @@ HelpMessage: '' ### -TemplateId - +. ```yaml Type: System.String @@ -521,7 +516,7 @@ HelpMessage: '' ### -UseSavedCredentials - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -602,7 +597,7 @@ 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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ApplicationIdentifier ]: [Credentials ]: @@ -615,7 +610,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -645,28 +640,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Test-MgServicePrincipalSynchronizationJobCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) 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..d5695e26eba86 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 --- @@ -16,9 +16,6 @@ title: Update-MgApplication Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplication?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -57,7 +54,7 @@ Update-MgApplication -ApplicationId [-ResponseHeadersVariable ] [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -67,7 +64,6 @@ Update-MgApplication -ApplicationId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -106,7 +102,7 @@ Update-MgApplication -InputObject [-ResponseHeadersVaria [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -116,7 +112,7 @@ Update-MgApplication -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -129,24 +125,13 @@ This cmdlet has the following aliases, Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -**Permissions** - -| 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 (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, | - ## EXAMPLES -### Example 1: Update an application -```powershell +### EXAMPLE 1 + Update-MgApplication ` -ApplicationId 'f6b30057-7095-4e2c-89f8-224149f591b7' ` -DisplayName 'Testing App' -``` - -This example updates the specified application's display name. ## PARAMETERS @@ -599,7 +584,7 @@ HelpMessage: '' ### -DefaultRedirectUri - +. ```yaml Type: System.String @@ -849,7 +834,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies - +. To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1062,7 +1047,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1264,7 +1249,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1845,7 +1830,7 @@ HelpMessage: '' ### -TokenIssuancePolicies - +. To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1873,7 +1858,7 @@ HelpMessage: '' ### -TokenLifetimePolicies - +. To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml @@ -2051,7 +2036,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API ``: apiApplication +API : apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2079,8 +2064,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2114,14 +2099,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 +2122,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. @@ -2149,18 +2155,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors +AUTHENTICATIONBEHAVIORS : authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER ``: application +BODYPARAMETER : application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2204,8 +2210,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2243,14 +2249,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 +2272,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. @@ -2277,8 +2304,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2848,13 +2875,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION ``: certification +CERTIFICATION : certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF ``: directoryObject +CREATEDONBEHALFOF : directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2940,7 +2967,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2952,7 +2979,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3001,7 +3028,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS ``: optionalClaims +OPTIONALCLAIMS : optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3024,7 +3051,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS ``: parentalControlSettings +PARENTALCONTROLSETTINGS : parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3053,13 +3080,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT ``: publicClientApplication +PUBLICCLIENT : publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification +REQUESTSIGNATUREVERIFICATION : requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3081,7 +3108,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3092,11 +3119,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA ``: spaApplication +SPA : spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3385,13 +3412,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB ``: webApplication +WEB : webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3407,27 +3434,5 @@ WEB ``: webApplication ## RELATED LINKS -- [Update-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication) +- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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..dbac0f2f90101 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 --- @@ -16,9 +16,6 @@ title: Update-MgApplicationByAppId Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationByAppId?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -57,7 +54,7 @@ Update-MgApplicationByAppId -AppId [-ResponseHeadersVariable ] [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -96,7 +93,7 @@ Update-MgApplicationByAppId -InputObject [-AppId ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -106,7 +103,6 @@ Update-MgApplicationByAppId -AppId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -116,7 +112,7 @@ Update-MgApplicationByAppId -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -129,6 +125,16 @@ This cmdlet has the following aliases, Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AddIns @@ -579,7 +585,7 @@ HelpMessage: '' ### -DefaultRedirectUri - +. ```yaml Type: System.String @@ -829,7 +835,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies - +. To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1042,7 +1048,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1244,7 +1250,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1825,7 +1831,7 @@ HelpMessage: '' ### -TokenIssuancePolicies - +. To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1853,7 +1859,7 @@ HelpMessage: '' ### -TokenLifetimePolicies - +. To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml @@ -2031,7 +2037,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API ``: apiApplication +API : apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2059,8 +2065,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2094,14 +2100,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 +2123,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. @@ -2129,18 +2156,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors +AUTHENTICATIONBEHAVIORS : authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER ``: application +BODYPARAMETER : application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2184,8 +2211,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2223,14 +2250,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 +2273,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. @@ -2257,8 +2305,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2828,13 +2876,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION ``: certification +CERTIFICATION : certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF ``: directoryObject +CREATEDONBEHALFOF : directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2920,7 +2968,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2932,7 +2980,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -2981,7 +3029,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS ``: optionalClaims +OPTIONALCLAIMS : optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3004,7 +3052,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS ``: parentalControlSettings +PARENTALCONTROLSETTINGS : parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3033,13 +3081,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT ``: publicClientApplication +PUBLICCLIENT : publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification +REQUESTSIGNATUREVERIFICATION : requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3061,7 +3109,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3072,11 +3120,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA ``: spaApplication +SPA : spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3365,13 +3413,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB ``: webApplication +WEB : webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3387,28 +3435,5 @@ WEB ``: webApplication ## RELATED LINKS -- [Update-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid) +- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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..1bec649e18ef8 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 --- @@ -16,9 +16,6 @@ title: Update-MgApplicationByUniqueName Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationByUniqueName?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -57,7 +54,7 @@ Update-MgApplicationByUniqueName -UniqueName [-ResponseHeadersVariable [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -96,7 +93,7 @@ Update-MgApplicationByUniqueName -InputObject [-UniqueNa [-VerifiedPublisher ] [-Web ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -106,7 +103,6 @@ Update-MgApplicationByUniqueName -UniqueName -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -116,7 +112,7 @@ Update-MgApplicationByUniqueName -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -130,9 +126,8 @@ Create a new application object if it doesn't exist, or update the properties of This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. ## EXAMPLES -### Example 1: Create a new application if it doesn't exist -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -142,12 +137,7 @@ $params = @{ Update-MgApplicationByUniqueName -BodyParameter $params -``` -This example will create a new application if it doesn't exist - -### Example 2: Update an existing application - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Applications @@ -157,10 +147,6 @@ $params = @{ Update-MgApplicationByUniqueName -BodyParameter $params -``` -This example will update an existing application - - ## PARAMETERS ### -AddIns @@ -584,7 +570,7 @@ HelpMessage: '' ### -DefaultRedirectUri - +. ```yaml Type: System.String @@ -834,7 +820,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies - +. To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1047,7 +1033,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1249,7 +1235,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1830,7 +1816,7 @@ HelpMessage: '' ### -TokenIssuancePolicies - +. To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1858,7 +1844,7 @@ HelpMessage: '' ### -TokenLifetimePolicies - +. To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml @@ -2063,7 +2049,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API ``: apiApplication +API : apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2091,8 +2077,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2126,14 +2112,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 +2135,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. @@ -2161,18 +2168,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors +AUTHENTICATIONBEHAVIORS : authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER ``: application +BODYPARAMETER : application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2216,8 +2223,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2255,14 +2262,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 +2285,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. @@ -2289,8 +2317,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2860,13 +2888,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION ``: certification +CERTIFICATION : certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF ``: directoryObject +CREATEDONBEHALFOF : directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2952,7 +2980,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2964,7 +2992,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3013,7 +3041,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS ``: optionalClaims +OPTIONALCLAIMS : optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3036,7 +3064,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS ``: parentalControlSettings +PARENTALCONTROLSETTINGS : parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3065,13 +3093,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT ``: publicClientApplication +PUBLICCLIENT : publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification +REQUESTSIGNATUREVERIFICATION : requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3093,7 +3121,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3104,11 +3132,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA ``: spaApplication +SPA : spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3397,13 +3425,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB ``: webApplication +WEB : webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3419,27 +3447,5 @@ WEB ``: webApplication ## RELATED LINKS -- [Update-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename) +- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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..fabae035dc0a1 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationExtensionProperty Update the navigation property extensionProperties in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgApplicationExtensionProperty -ApplicationId -ExtensionProperty -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgApplicationExtensionProperty -InputObject [-IsSyncedFromOnPremises] [-Name ] [-TargetObjects ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +58,7 @@ Update-MgApplicationExtensionProperty -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property extensionProperties in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -691,7 +698,7 @@ 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 ``: extensionProperty +BODYPARAMETER : extensionProperty [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -717,7 +724,7 @@ Supports $filter (eq). Not nullable. UserGroupAdministrativeUnitApplicationDeviceOrganization -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -747,27 +754,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty) 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..367912810f585 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 --- @@ -17,9 +17,6 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgApplicationFederatedIdentityCredential -ApplicationId [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgApplicationFederatedIdentityCredential -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,7 @@ Update-MgApplicationFederatedIdentityCredential -InputObject ] [-Id ] [-Issuer ] [-Name ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgApplicationFederatedIdentityCredential -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +72,10 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Application.ReadWrite.All, | -| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Applications $params = @{ @@ -102,11 +89,6 @@ $params = @{ } Update-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -BodyParameter $params -``` -This example shows how to use the Update-MgApplicationFederatedIdentityCredential Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -679,7 +661,7 @@ 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 ``: federatedIdentityCredential +BODYPARAMETER : federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -710,7 +692,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -740,27 +722,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) 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..c96271dedc4fb 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 --- @@ -17,9 +17,6 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,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 +37,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -ApplicationId -N -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -InputObject ] [-Description ] [-Id ] [-Issuer ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +58,7 @@ Update-MgApplicationFederatedIdentityCredentialByName -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -646,7 +653,7 @@ 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 ``: federatedIdentityCredential +BODYPARAMETER : federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -677,7 +684,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -707,28 +714,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname) -- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname) +- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) 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..fe11bad3fcd54 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationJob Update the navigation property jobs in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgApplicationSynchronizationJob -ApplicationId -SynchronizationJ -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgApplicationSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgApplicationSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property jobs in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -657,7 +664,7 @@ 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 ``: synchronizationJob +BODYPARAMETER : synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -884,7 +891,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -911,7 +918,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE ``: synchronizationSchedule +SCHEDULE : synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -921,7 +928,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1059,7 +1066,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS ``: synchronizationStatus +STATUS : synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1135,27 +1142,4 @@ Some settings are inherited from the template. ## RELATED LINKS -- [Update-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob) 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..6ef31b4c28fa2 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationJobBulkUpload Update the navigation property bulkUpload in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgApplicationSynchronizationJobBulkUpload -ApplicationId [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgApplicationSynchronizationJobBulkUpload -ApplicationId -SynchronizationJobId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +44,7 @@ Update-MgApplicationSynchronizationJobBulkUpload -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +54,6 @@ Update-MgApplicationSynchronizationJobBulkUpload -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -70,6 +65,16 @@ This cmdlet has the following aliases, Update the navigation property bulkUpload in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -484,7 +489,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -514,27 +519,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload) 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..4525defcadbcf 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationJobSchema Update the navigation property schema in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgApplicationSynchronizationJobSchema -ApplicationId -Synchroniz -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgApplicationSynchronizationJobSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +58,7 @@ Update-MgApplicationSynchronizationJobSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property schema in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -571,7 +578,7 @@ 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 ``: synchronizationSchema +BODYPARAMETER : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -761,7 +768,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -875,27 +882,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema) 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..dd7d61963bfcb 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationJobSchemaDirectory Update the navigation property directories in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -ApplicationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +59,7 @@ Update-MgApplicationSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property directories in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -683,7 +690,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -736,7 +743,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -806,27 +813,4 @@ Not nullable. ## RELATED LINKS -- [Update-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory) 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..ab300c7cfd491 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationTemplate Update (override) the synchronization template associated with a given application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgApplicationSynchronizationTemplate -ApplicationId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -44,7 +40,6 @@ Update-MgApplicationSynchronizationTemplate -InputObject [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -55,7 +50,6 @@ Update-MgApplicationSynchronizationTemplate -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,7 @@ Update-MgApplicationSynchronizationTemplate -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,13 +71,15 @@ This cmdlet has the following aliases, Update (override) the synchronization template associated with a given application. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -693,7 +689,7 @@ 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 ``: synchronizationTemplate +BODYPARAMETER : synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -845,7 +841,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -877,7 +873,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1018,28 +1014,5 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-1.0) 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..421b05ed75f4e 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationTemplateSchema Update the navigation property schema in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgApplicationSynchronizationTemplateSchema -ApplicationId [-Id ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgApplicationSynchronizationTemplateSchema -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgApplicationSynchronizationTemplateSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgApplicationSynchronizationTemplateSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property schema in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -572,7 +578,7 @@ 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 ``: synchronizationSchema +BODYPARAMETER : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -762,7 +768,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -876,27 +882,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema) 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..cf68c3a3c29c5 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 --- @@ -15,9 +15,6 @@ title: Update-MgApplicationSynchronizationTemplateSchemaDirectory Update the navigation property directories in applications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -ApplicationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgApplicationSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property directories in applications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -684,7 +691,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -737,7 +744,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -807,27 +814,4 @@ Not nullable. ## RELATED LINKS -- [Update-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory) 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..3f1c41dbce260 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 --- @@ -15,9 +15,6 @@ title: Update-MgGroupAppRoleAssignment Update the navigation property appRoleAssignments in groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgGroupAppRoleAssignment -AppRoleAssignmentId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,6 @@ Update-MgGroupAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgGroupAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -722,7 +727,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -752,7 +757,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -782,27 +787,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment) 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..add91c7f9e8ac 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 --- @@ -16,9 +16,6 @@ title: Update-MgServicePrincipal Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipal?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -59,7 +56,6 @@ Update-MgServicePrincipal -ServicePrincipalId [-ResponseHeadersVariable [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -69,7 +65,7 @@ Update-MgServicePrincipal -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -110,7 +106,6 @@ Update-MgServicePrincipal -InputObject [-ResponseHeaders [-VerifiedPublisher ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -120,7 +115,7 @@ Update-MgServicePrincipal -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -133,27 +128,16 @@ This cmdlet has the following aliases, Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. -**Permissions** - -| 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 (personal Microsoft account) | Not supported | -| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentity.EnableDisable.All, | - ## EXAMPLES -### Example 1: Update the properties of a service principal -```powershell +### EXAMPLE 1 + $ServicePrincipalUpdate =@{ "accountEnabled" = "true" "appRoleAssignmentRequired" = "true" } Update-MgServicePrincipal -ServicePrincipalId '000e4269-1923-4c8c-9c27-1206e114d421' -BodyParameter $ServicePrincipalUpdate -``` - -This is example, the first command defines the properties and their values in a hashtable under the variable $ServicePrincipalUpdate. The second command updates the specified service principal. ## PARAMETERS @@ -748,7 +732,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications - +. To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -891,7 +875,7 @@ HelpMessage: '' ### -Endpoints - +. To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -1151,7 +1135,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -2024,7 +2008,7 @@ HelpMessage: '' ### -TransitiveMemberOf - +. To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml @@ -2163,14 +2147,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 +2170,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. @@ -2258,12 +2263,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER ``: servicePrincipal +BODYPARAMETER : servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2308,14 +2313,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 +2336,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). @@ -2380,8 +2406,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2582,8 +2608,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -3057,7 +3083,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -3069,7 +3095,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3175,8 +3201,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -3216,7 +3242,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3240,11 +3266,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3539,7 +3565,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3548,27 +3574,5 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [Update-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) 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..a53cd926c4e76 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalAppRoleAssignedTo Update the navigation property appRoleAssignedTo in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgServicePrincipalAppRoleAssignedTo -AppRoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,6 @@ Update-MgServicePrincipalAppRoleAssignedTo -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -64,7 +59,7 @@ Update-MgServicePrincipalAppRoleAssignedTo -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignedTo in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -723,7 +728,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -753,7 +758,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -783,27 +788,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto) 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..2732a6654baf5 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalAppRoleAssignment Update the navigation property appRoleAssignments in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-PrincipalId ] [-PrincipalType ] [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,6 @@ Update-MgServicePrincipalAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -64,7 +59,7 @@ Update-MgServicePrincipalAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -723,7 +728,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -753,7 +758,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -783,27 +788,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment) 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..8cf6afe75ad90 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 --- @@ -16,9 +16,6 @@ title: Update-MgServicePrincipalByAppId Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -59,7 +56,6 @@ Update-MgServicePrincipalByAppId -AppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -100,7 +96,6 @@ Update-MgServicePrincipalByAppId -InputObject [-AppId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -110,7 +105,6 @@ Update-MgServicePrincipalByAppId -AppId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -120,7 +114,7 @@ Update-MgServicePrincipalByAppId -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -134,9 +128,8 @@ Create a new servicePrincipal object if it doesn't exist, or update the properti This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. ## EXAMPLES -### Example 1: Create a new servicePrincipal if it doesn't exist -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -146,12 +139,7 @@ $params = @{ Update-MgServicePrincipalByAppId -BodyParameter $params -``` -This example will create a new serviceprincipal if it doesn't exist - -### Example 2: Update an existing servicePrincipal - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Applications @@ -161,10 +149,6 @@ $params = @{ Update-MgServicePrincipalByAppId -BodyParameter $params -``` -This example will update an existing serviceprincipal - - ## PARAMETERS ### -AccountEnabled @@ -785,7 +769,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications - +. To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -928,7 +912,7 @@ HelpMessage: '' ### -Endpoints - +. To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -1188,7 +1172,7 @@ HelpMessage: '' ### -IsDisabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -2034,7 +2018,7 @@ HelpMessage: '' ### -TransitiveMemberOf - +. To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml @@ -2173,14 +2157,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 +2180,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. @@ -2268,12 +2273,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER ``: servicePrincipal +BODYPARAMETER : servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2318,14 +2323,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 +2346,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). @@ -2390,8 +2416,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2592,8 +2618,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -3067,7 +3093,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO ``: informationalUrl +INFO : informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -3079,7 +3105,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3185,8 +3211,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges - @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . +/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -3226,7 +3252,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3250,11 +3276,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION ``: synchronization +SYNCHRONIZATION : synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3549,7 +3575,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER ``: verifiedPublisher +VERIFIEDPUBLISHER : verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3558,27 +3584,5 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [Update-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid) +- [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) 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..58746dbf4a55a 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalDelegatedPermissionClassification Update the navigation property delegatedPermissionClassifications in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgServicePrincipalDelegatedPermissionClassification [-Id ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgServicePrincipalDelegatedPermissionClassification [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-PermissionId ] [-PermissionName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +59,6 @@ Update-MgServicePrincipalDelegatedPermissionClassification -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property delegatedPermissionClassifications in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -573,7 +578,7 @@ 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 ``: delegatedPermissionClassification +BODYPARAMETER : delegatedPermissionClassification [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -584,7 +589,7 @@ Doesn't support $filter. [PermissionName ]: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Doesn't support $filter. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -614,27 +619,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification) 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..4ab38cf6d70e3 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalEndpoint Update the navigation property endpoints in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,7 @@ Update-MgServicePrincipalEndpoint -EndpointId -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,6 @@ Update-MgServicePrincipalEndpoint -InputObject [-ProviderResourceId ] [-Uri ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +56,7 @@ Update-MgServicePrincipalEndpoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +68,16 @@ This cmdlet has the following aliases, Update the navigation property endpoints in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -153,7 +158,7 @@ HelpMessage: '' ### -Capability - +. ```yaml Type: System.String @@ -376,7 +381,7 @@ HelpMessage: '' ### -ProviderId - +. ```yaml Type: System.String @@ -403,7 +408,7 @@ HelpMessage: '' ### -ProviderName - +. ```yaml Type: System.String @@ -430,7 +435,7 @@ HelpMessage: '' ### -ProviderResourceId - +. ```yaml Type: System.String @@ -569,7 +574,7 @@ HelpMessage: '' ### -Uri - +. ```yaml Type: System.String @@ -650,7 +655,7 @@ 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 ``: endpoint +BODYPARAMETER : endpoint [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -662,7 +667,7 @@ Read-only. [ProviderResourceId ]: [Uri ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -692,27 +697,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint) 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..b05c653279063 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 --- @@ -16,9 +16,6 @@ title: Update-MgServicePrincipalRemoteDesktopSecurityConfiguration Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-IsRemoteDesktopProtocolEnabled] [-TargetDeviceGroups ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -99,10 +85,6 @@ $params = @{ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId -BodyParameter $params -``` -This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -580,7 +562,7 @@ Supports $expand. Read-only. [DisplayName ]: The display name of the approved client application. -BODYPARAMETER ``: remoteDesktopSecurityConfiguration +BODYPARAMETER : remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -595,7 +577,7 @@ Read-only. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -630,27 +612,5 @@ Read-only. ## RELATED LINKS -- [Update-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration) +- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md similarity index 61% rename from microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md rename to microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md index 433941531515f..931b9a754fd91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -1,44 +1,63 @@ --- document type: cmdlet external help file: Microsoft.Graph.Applications-Help.xml -HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenLifetimePolicyByRef +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp Locale: 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 +title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp --- -# Remove-MgApplicationTokenLifetimePolicyByRef +# Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp ## SYNOPSIS -Remove a tokenLifetimePolicy from an application. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) +Update the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration. ## SYNTAX -### Delete (Default) +### UpdateExpanded (Default) ``` -Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId - -TokenLifetimePolicyId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] - [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp + -ApprovedClientAppId -ServicePrincipalId + -BodyParameter [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` -### DeleteViaIdentity +### UpdateViaIdentityExpanded ``` -Remove-MgApplicationTokenLifetimePolicyByRef -InputObject - [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] - [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] +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 @@ -48,43 +67,67 @@ This cmdlet has the following aliases, ## DESCRIPTION -Remove a tokenLifetimePolicy from an application. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Policy.ReadWrite.ApplicationConfiguration, Policy.Read.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | +Update the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications -Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId - -``` -This example shows how to use the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet. +$params = @{ + "@odata.type" = "#microsoft.graph.approvedClientApp" + displayName = "Client App 1" +} +Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId -BodyParameter $params ## PARAMETERS -### -ApplicationId +### -AdditionalProperties -The unique identifier of application +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: -- ObjectId +Aliases: [] ParameterSets: -- Name: Delete +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update Position: Named IsRequired: true ValueFromPipeline: false @@ -95,6 +138,34 @@ 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 @@ -138,6 +209,33 @@ 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. @@ -201,9 +299,10 @@ AcceptedValues: [] HelpMessage: '' ``` -### -IfMatch +### -Id -ETag +The unique identifier for an entity. +Read-only. ```yaml Type: System.String @@ -211,7 +310,13 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: (All) +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded Position: Named IsRequired: false ValueFromPipeline: false @@ -233,31 +338,16 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: DeleteViaIdentity +- Name: UpdateViaIdentityExpanded 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) +- Name: UpdateViaIdentity Position: Named - IsRequired: false - ValueFromPipeline: false + IsRequired: true + ValueFromPipeline: true ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: false DontShow: false @@ -350,9 +440,9 @@ AcceptedValues: [] HelpMessage: '' ``` -### -TokenLifetimePolicyId +### -ServicePrincipalId -The unique identifier of tokenLifetimePolicy +The unique identifier of servicePrincipal ```yaml Type: System.String @@ -360,7 +450,13 @@ DefaultValue: '' SupportsWildcards: false Aliases: [] ParameterSets: -- Name: Delete +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update Position: Named IsRequired: true ValueFromPipeline: false @@ -406,13 +502,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable {{ Fill in the Description }} +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp + +{{ Fill in the Description }} + ### System.Collections.IDictionary {{ Fill in the Description }} ## OUTPUTS -### System.Boolean +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphApprovedClientApp {{ Fill in the Description }} @@ -423,7 +523,13 @@ 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 +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 @@ -453,27 +559,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenLifetimePolicyByRef) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) +- [](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..c2cfa6953eb24 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 --- @@ -16,9 +16,6 @@ title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGr Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-AdditionalProperties ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +59,6 @@ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +71,9 @@ This cmdlet has the following aliases, Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Application-RemoteDesktopConfig.ReadWrite.All, Directory.ReadWrite.All, Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Applications @@ -97,10 +84,6 @@ $params = @{ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId -TargetDeviceGroupId $targetDeviceGroupId -BodyParameter $params -``` -This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -542,13 +525,13 @@ 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 ``: targetDeviceGroup +BODYPARAMETER : targetDeviceGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -578,27 +561,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [](https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-1.0) 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..499b2e9410f2f 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationJob Update the navigation property jobs in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,6 @@ Update-MgServicePrincipalSynchronizationJob -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,7 @@ Update-MgServicePrincipalSynchronizationJob -InputObject [-SynchronizationJobSettings ] [-TemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +61,7 @@ Update-MgServicePrincipalSynchronizationJob -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,13 +73,15 @@ This cmdlet has the following aliases, Update the navigation property jobs in servicePrincipals -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Synchronization.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Synchronization.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -666,7 +664,7 @@ 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 ``: synchronizationJob +BODYPARAMETER : synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -893,7 +891,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -920,7 +918,7 @@ INPUTOBJECT ``: Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE ``: synchronizationSchedule +SCHEDULE : synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -930,7 +928,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1068,7 +1066,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS ``: synchronizationStatus +STATUS : synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1144,27 +1142,4 @@ Some settings are inherited from the template. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob) 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..85a7d5eda259c 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationJobBulkUpload Update the navigation property bulkUpload in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -ServicePrincipalId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +44,7 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +54,6 @@ Update-MgServicePrincipalSynchronizationJobBulkUpload -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -70,6 +65,16 @@ This cmdlet has the following aliases, Update the navigation property bulkUpload in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -483,7 +488,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -513,27 +518,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload) 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..6a7f92bcb7387 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 --- @@ -18,9 +18,6 @@ This method fully replaces the current schema with the one provided in the reque To update the schema of a template, make the call on the application object. You must be the owner of the application. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-Id ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,6 @@ Update-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +61,7 @@ Update-MgServicePrincipalSynchronizationJobSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -80,6 +76,16 @@ This method fully replaces the current schema with the one provided in the reque To update the schema of a template, make the call on the application object. You must be the owner of the application. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -577,7 +583,7 @@ 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 ``: synchronizationSchema +BODYPARAMETER : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -767,7 +773,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -881,28 +887,5 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema) -- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema) +- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-1.0) 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..5b291f563eabb 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationJobSchemaDirectory Update the navigation property directories in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI [-Id ] [-Name ] [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -DirectoryDefinitionI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +59,7 @@ Update-MgServicePrincipalSynchronizationJobSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property directories in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -682,7 +689,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -735,7 +742,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -805,27 +812,4 @@ Not nullable. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory) 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..5d58dde49d2d3 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationTemplate Update the navigation property templates in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-Schema ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +50,6 @@ Update-MgServicePrincipalSynchronizationTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,7 @@ Update-MgServicePrincipalSynchronizationTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property templates in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -685,7 +689,7 @@ 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 ``: synchronizationTemplate +BODYPARAMETER : synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -837,7 +841,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -869,7 +873,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA ``: synchronizationSchema +SCHEMA : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1010,27 +1014,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate) 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..78a2aec27caa3 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationTemplateSchema Update the navigation property schema in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-SynchronizationRules ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -ServicePrincipalId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchema -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property schema in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -571,7 +577,7 @@ 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 ``: synchronizationSchema +BODYPARAMETER : synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -761,7 +767,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -875,27 +881,4 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema) 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..bbfd78e33e428 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 --- @@ -15,9 +15,6 @@ title: Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory Update the navigation property directories in servicePrincipals -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini [-Objects ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -DirectoryDefini -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject ] [-ReadOnly] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property directories in servicePrincipals +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -683,7 +690,7 @@ 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 ``: directoryDefinition +BODYPARAMETER : directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -736,7 +743,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -806,27 +813,4 @@ Not nullable. ## RELATED LINKS -- [Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory) 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..c3c51b88cfc4f 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 --- @@ -15,9 +15,6 @@ title: Update-MgUserAppRoleAssignment Update the navigation property appRoleAssignments in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgUserAppRoleAssignment -AppRoleAssignmentId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,6 @@ Update-MgUserAppRoleAssignment -InputObject [-ResourceDisplayName ] [-ResourceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgUserAppRoleAssignment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -722,7 +727,7 @@ 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 ``: appRoleAssignment +BODYPARAMETER : appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -752,7 +757,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -782,27 +787,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment) From cf29ccfd5c5d0faf5e7fabc86cf2c80942ae8a39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:38:22 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- .../Add-MgApplicationKey.md | 30 ++++++-- .../Add-MgApplicationPassword.md | 28 +++++++- .../Add-MgServicePrincipalKey.md | 30 ++++++-- .../Add-MgServicePrincipalPassword.md | 28 +++++++- ...ServicePrincipalTokenSigningCertificate.md | 30 ++++++-- .../Clear-MgApplicationVerifiedPublisher.md | 24 ++++++- .../Confirm-MgApplicationMemberGroup.md | 30 ++++++-- .../Confirm-MgApplicationMemberObject.md | 26 ++++++- .../Confirm-MgServicePrincipalMemberGroup.md | 30 ++++++-- .../Confirm-MgServicePrincipalMemberObject.md | 26 ++++++- ...cationSynchronizationJobSchemaDirectory.md | 24 ++++++- ...nSynchronizationTemplateSchemaDirectory.md | 24 ++++++- ...ncipalSynchronizationJobSchemaDirectory.md | 24 ++++++- ...lSynchronizationTemplateSchemaDirectory.md | 24 ++++++- .../Get-MgApplication.md | 24 ++++++- .../Get-MgApplicationAppManagementPolicy.md | 22 ++++++ ...t-MgApplicationAppManagementPolicyByRef.md | 22 ++++++ ...t-MgApplicationAppManagementPolicyCount.md | 24 ++++++- .../Get-MgApplicationByAppId.md | 24 ++++++- .../Get-MgApplicationById.md | 24 ++++++- .../Get-MgApplicationByUniqueName.md | 24 ++++++- .../Get-MgApplicationCount.md | 22 ++++++ .../Get-MgApplicationCreatedOnBehalfOf.md | 24 ++++++- .../Get-MgApplicationDelta.md | 22 ++++++ .../Get-MgApplicationExtensionProperty.md | 24 ++++++- ...Get-MgApplicationExtensionPropertyCount.md | 24 ++++++- ...gApplicationFederatedIdentityCredential.md | 24 ++++++- ...cationFederatedIdentityCredentialByName.md | 24 ++++++- ...icationFederatedIdentityCredentialCount.md | 24 ++++++- ...t-MgApplicationHomeRealmDiscoveryPolicy.md | 24 ++++++- ...pplicationHomeRealmDiscoveryPolicyCount.md | 24 ++++++- .../Get-MgApplicationLogo.md | 24 ++++++- .../Get-MgApplicationMemberGroup.md | 26 ++++++- .../Get-MgApplicationMemberObject.md | 30 ++++++-- .../Get-MgApplicationOwner.md | 22 ++++++ ...t-MgApplicationOwnerAsAppRoleAssignment.md | 24 ++++++- .../Get-MgApplicationOwnerAsEndpoint.md | 24 ++++++- ...et-MgApplicationOwnerAsServicePrincipal.md | 24 ++++++- .../Get-MgApplicationOwnerAsUser.md | 24 ++++++- .../Get-MgApplicationOwnerByRef.md | 22 ++++++ .../Get-MgApplicationOwnerCount.md | 24 ++++++- ...pplicationOwnerCountAsAppRoleAssignment.md | 24 ++++++- .../Get-MgApplicationOwnerCountAsEndpoint.md | 24 ++++++- ...ApplicationOwnerCountAsServicePrincipal.md | 24 ++++++- .../Get-MgApplicationOwnerCountAsUser.md | 24 ++++++- .../Get-MgApplicationSynchronization.md | 24 ++++++- ...MgApplicationSynchronizationAccessToken.md | 26 ++++++- .../Get-MgApplicationSynchronizationJob.md | 24 ++++++- ...ApplicationSynchronizationJobBulkUpload.md | 24 ++++++- ...tionSynchronizationJobBulkUploadContent.md | 24 ++++++- ...et-MgApplicationSynchronizationJobCount.md | 24 ++++++- ...t-MgApplicationSynchronizationJobSchema.md | 24 ++++++- ...cationSynchronizationJobSchemaDirectory.md | 24 ++++++- ...nSynchronizationJobSchemaDirectoryCount.md | 24 ++++++- ...MgApplicationSynchronizationSecretCount.md | 24 ++++++- ...et-MgApplicationSynchronizationTemplate.md | 24 ++++++- ...ApplicationSynchronizationTemplateCount.md | 24 ++++++- ...pplicationSynchronizationTemplateSchema.md | 24 ++++++- ...nSynchronizationTemplateSchemaDirectory.md | 24 ++++++- ...hronizationTemplateSchemaDirectoryCount.md | 24 ++++++- .../Get-MgApplicationTemplate.md | 24 ++++++- .../Get-MgApplicationTemplateCount.md | 22 ++++++ .../Get-MgApplicationTokenIssuancePolicy.md | 22 ++++++ ...t-MgApplicationTokenIssuancePolicyByRef.md | 22 ++++++ ...t-MgApplicationTokenIssuancePolicyCount.md | 24 ++++++- .../Get-MgApplicationTokenLifetimePolicy.md | 22 ++++++ ...t-MgApplicationTokenLifetimePolicyByRef.md | 22 ++++++ ...t-MgApplicationTokenLifetimePolicyCount.md | 24 ++++++- .../Get-MgGroupAppRoleAssignment.md | 24 ++++++- .../Get-MgGroupAppRoleAssignmentCount.md | 24 ++++++- .../Get-MgServicePrincipal.md | 24 ++++++- ...t-MgServicePrincipalAppManagementPolicy.md | 24 ++++++- ...ervicePrincipalAppManagementPolicyCount.md | 24 ++++++- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 24 ++++++- ...gServicePrincipalAppRoleAssignedToCount.md | 24 ++++++- ...Get-MgServicePrincipalAppRoleAssignment.md | 24 ++++++- ...gServicePrincipalAppRoleAssignmentCount.md | 24 ++++++- .../Get-MgServicePrincipalByAppId.md | 24 ++++++- .../Get-MgServicePrincipalById.md | 24 ++++++- ...et-MgServicePrincipalClaimMappingPolicy.md | 22 ++++++ ...ServicePrincipalClaimMappingPolicyByRef.md | 22 ++++++ ...ServicePrincipalClaimMappingPolicyCount.md | 24 ++++++- .../Get-MgServicePrincipalCount.md | 22 ++++++ .../Get-MgServicePrincipalCreatedObject.md | 24 ++++++- ...rincipalCreatedObjectAsServicePrincipal.md | 24 ++++++- ...et-MgServicePrincipalCreatedObjectCount.md | 24 ++++++- ...palCreatedObjectCountAsServicePrincipal.md | 24 ++++++- ...ncipalDelegatedPermissionClassification.md | 24 ++++++- ...lDelegatedPermissionClassificationCount.md | 24 ++++++- .../Get-MgServicePrincipalDelta.md | 22 ++++++ .../Get-MgServicePrincipalEndpoint.md | 24 ++++++- .../Get-MgServicePrincipalEndpointCount.md | 24 ++++++- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 22 ++++++ ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 22 ++++++ ...ePrincipalHomeRealmDiscoveryPolicyCount.md | 24 ++++++- .../Get-MgServicePrincipalMemberGroup.md | 26 ++++++- .../Get-MgServicePrincipalMemberObject.md | 30 ++++++-- .../Get-MgServicePrincipalMemberOf.md | 24 ++++++- ...cePrincipalMemberOfAsAdministrativeUnit.md | 24 ++++++- ...ServicePrincipalMemberOfAsDirectoryRole.md | 24 ++++++- .../Get-MgServicePrincipalMemberOfAsGroup.md | 24 ++++++- .../Get-MgServicePrincipalMemberOfCount.md | 24 ++++++- ...ncipalMemberOfCountAsAdministrativeUnit.md | 24 ++++++- ...cePrincipalMemberOfCountAsDirectoryRole.md | 24 ++++++- ...-MgServicePrincipalMemberOfCountAsGroup.md | 24 ++++++- ...MgServicePrincipalOauth2PermissionGrant.md | 24 ++++++- ...vicePrincipalOauth2PermissionGrantCount.md | 24 ++++++- .../Get-MgServicePrincipalOwnedObject.md | 24 ++++++- ...PrincipalOwnedObjectAsAppRoleAssignment.md | 24 ++++++- ...ervicePrincipalOwnedObjectAsApplication.md | 24 ++++++- ...MgServicePrincipalOwnedObjectAsEndpoint.md | 24 ++++++- ...et-MgServicePrincipalOwnedObjectAsGroup.md | 24 ++++++- ...ePrincipalOwnedObjectAsServicePrincipal.md | 24 ++++++- .../Get-MgServicePrincipalOwnedObjectCount.md | 24 ++++++- ...ipalOwnedObjectCountAsAppRoleAssignment.md | 24 ++++++- ...ePrincipalOwnedObjectCountAsApplication.md | 24 ++++++- ...vicePrincipalOwnedObjectCountAsEndpoint.md | 24 ++++++- ...ServicePrincipalOwnedObjectCountAsGroup.md | 24 ++++++- ...cipalOwnedObjectCountAsServicePrincipal.md | 24 ++++++- .../Get-MgServicePrincipalOwner.md | 22 ++++++ ...ervicePrincipalOwnerAsAppRoleAssignment.md | 24 ++++++- .../Get-MgServicePrincipalOwnerAsEndpoint.md | 24 ++++++- ...ServicePrincipalOwnerAsServicePrincipal.md | 24 ++++++- .../Get-MgServicePrincipalOwnerAsUser.md | 24 ++++++- .../Get-MgServicePrincipalOwnerByRef.md | 22 ++++++ .../Get-MgServicePrincipalOwnerCount.md | 24 ++++++- ...ePrincipalOwnerCountAsAppRoleAssignment.md | 24 ++++++- ...-MgServicePrincipalOwnerCountAsEndpoint.md | 24 ++++++- ...cePrincipalOwnerCountAsServicePrincipal.md | 24 ++++++- .../Get-MgServicePrincipalOwnerCountAsUser.md | 24 ++++++- ...cipalRemoteDesktopSecurityConfiguration.md | 24 ++++++- ...pSecurityConfigurationApprovedClientApp.md | 24 ++++++- ...rityConfigurationApprovedClientAppCount.md | 24 ++++++- ...pSecurityConfigurationTargetDeviceGroup.md | 24 ++++++- ...rityConfigurationTargetDeviceGroupCount.md | 24 ++++++- .../Get-MgServicePrincipalSynchronization.md | 24 ++++++- ...vicePrincipalSynchronizationAccessToken.md | 26 ++++++- ...et-MgServicePrincipalSynchronizationJob.md | 24 ++++++- ...cePrincipalSynchronizationJobBulkUpload.md | 24 ++++++- ...ipalSynchronizationJobBulkUploadContent.md | 24 ++++++- ...ServicePrincipalSynchronizationJobCount.md | 24 ++++++- ...ervicePrincipalSynchronizationJobSchema.md | 24 ++++++- ...ncipalSynchronizationJobSchemaDirectory.md | 24 ++++++- ...lSynchronizationJobSchemaDirectoryCount.md | 24 ++++++- ...vicePrincipalSynchronizationSecretCount.md | 24 ++++++- ...ServicePrincipalSynchronizationTemplate.md | 24 ++++++- ...cePrincipalSynchronizationTemplateCount.md | 24 ++++++- ...ePrincipalSynchronizationTemplateSchema.md | 24 ++++++- ...lSynchronizationTemplateSchemaDirectory.md | 24 ++++++- ...hronizationTemplateSchemaDirectoryCount.md | 24 ++++++- ...t-MgServicePrincipalTokenIssuancePolicy.md | 22 ++++++ ...ervicePrincipalTokenIssuancePolicyByRef.md | 22 ++++++ ...ervicePrincipalTokenIssuancePolicyCount.md | 24 ++++++- ...t-MgServicePrincipalTokenLifetimePolicy.md | 22 ++++++ ...ervicePrincipalTokenLifetimePolicyByRef.md | 22 ++++++ ...ervicePrincipalTokenLifetimePolicyCount.md | 24 ++++++- ...et-MgServicePrincipalTransitiveMemberOf.md | 24 ++++++- ...lTransitiveMemberOfAsAdministrativeUnit.md | 24 ++++++- ...ncipalTransitiveMemberOfAsDirectoryRole.md | 24 ++++++- ...rvicePrincipalTransitiveMemberOfAsGroup.md | 24 ++++++- ...ServicePrincipalTransitiveMemberOfCount.md | 24 ++++++- ...sitiveMemberOfCountAsAdministrativeUnit.md | 24 ++++++- ...lTransitiveMemberOfCountAsDirectoryRole.md | 24 ++++++- ...PrincipalTransitiveMemberOfCountAsGroup.md | 24 ++++++- .../Get-MgUserAppRoleAssignment.md | 24 ++++++- .../Get-MgUserAppRoleAssignmentCount.md | 24 ++++++- ...icationSynchronizationJobSchemaOperator.md | 24 ++++++- ...onSynchronizationTemplateSchemaOperator.md | 24 ++++++- ...incipalSynchronizationJobSchemaOperator.md | 24 ++++++- ...alSynchronizationTemplateSchemaOperator.md | 24 ++++++- ...tionApplicationSynchronizationJobSchema.md | 24 ++++++- ...pplicationSynchronizationTemplateSchema.md | 24 ++++++- ...ervicePrincipalSynchronizationJobSchema.md | 24 ++++++- ...ePrincipalSynchronizationTemplateSchema.md | 24 ++++++- ...Invoke-MgInstantiateApplicationTemplate.md | 26 ++++++- ...ationSynchronizationJobSchemaExpression.md | 30 ++++++-- ...SynchronizationTemplateSchemaExpression.md | 30 ++++++-- ...cipalSynchronizationJobSchemaExpression.md | 30 ++++++-- ...SynchronizationTemplateSchemaExpression.md | 30 ++++++-- .../Microsoft.Graph.Applications.md | 19 +++++ .../New-MgApplication.md | 68 ++++++++++++------ ...w-MgApplicationAppManagementPolicyByRef.md | 28 +++++++- .../New-MgApplicationExtensionProperty.md | 26 ++++++- ...gApplicationFederatedIdentityCredential.md | 26 ++++++- .../New-MgApplicationOwnerByRef.md | 28 +++++++- .../New-MgApplicationSynchronizationJob.md | 32 +++++++-- ...MgApplicationSynchronizationJobOnDemand.md | 26 ++++++- ...cationSynchronizationJobSchemaDirectory.md | 26 ++++++- ...ew-MgApplicationSynchronizationTemplate.md | 28 +++++++- ...nSynchronizationTemplateSchemaDirectory.md | 26 ++++++- ...w-MgApplicationTokenIssuancePolicyByRef.md | 28 +++++++- ...w-MgApplicationTokenLifetimePolicyByRef.md | 28 +++++++- .../New-MgGroupAppRoleAssignment.md | 26 ++++++- .../New-MgServicePrincipal.md | 50 +++++++++---- ...New-MgServicePrincipalAppRoleAssignedTo.md | 26 ++++++- ...New-MgServicePrincipalAppRoleAssignment.md | 26 ++++++- ...ServicePrincipalClaimMappingPolicyByRef.md | 28 +++++++- ...ncipalDelegatedPermissionClassification.md | 26 ++++++- .../New-MgServicePrincipalEndpoint.md | 26 ++++++- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 28 +++++++- .../New-MgServicePrincipalOwnerByRef.md | 28 +++++++- ...pSecurityConfigurationApprovedClientApp.md | 26 ++++++- ...pSecurityConfigurationTargetDeviceGroup.md | 26 ++++++- ...ew-MgServicePrincipalSynchronizationJob.md | 32 +++++++-- ...vicePrincipalSynchronizationJobOnDemand.md | 26 ++++++- ...ncipalSynchronizationJobSchemaDirectory.md | 26 ++++++- ...ServicePrincipalSynchronizationTemplate.md | 28 +++++++- ...lSynchronizationTemplateSchemaDirectory.md | 26 ++++++- ...ervicePrincipalTokenIssuancePolicyByRef.md | 28 +++++++- ...ervicePrincipalTokenLifetimePolicyByRef.md | 28 +++++++- .../New-MgUserAppRoleAssignment.md | 26 ++++++- .../Remove-MgApplication.md | 24 ++++++- ...anagementPolicyAppManagementPolicyByRef.md | 24 ++++++- .../Remove-MgApplicationByAppId.md | 24 ++++++- .../Remove-MgApplicationByUniqueName.md | 24 ++++++- .../Remove-MgApplicationExtensionProperty.md | 24 ++++++- ...gApplicationFederatedIdentityCredential.md | 24 ++++++- ...cationFederatedIdentityCredentialByName.md | 24 ++++++- .../Remove-MgApplicationKey.md | 26 ++++++- .../Remove-MgApplicationLogo.md | 24 ++++++- ...-MgApplicationOwnerDirectoryObjectByRef.md | 24 ++++++- .../Remove-MgApplicationPassword.md | 26 ++++++- .../Remove-MgApplicationSynchronization.md | 24 ++++++- .../Remove-MgApplicationSynchronizationJob.md | 24 ++++++- ...ApplicationSynchronizationJobBulkUpload.md | 24 ++++++- ...tionSynchronizationJobBulkUploadContent.md | 24 ++++++- ...e-MgApplicationSynchronizationJobSchema.md | 24 ++++++- ...cationSynchronizationJobSchemaDirectory.md | 24 ++++++- ...ve-MgApplicationSynchronizationTemplate.md | 24 ++++++- ...pplicationSynchronizationTemplateSchema.md | 24 ++++++- ...nSynchronizationTemplateSchemaDirectory.md | 24 ++++++- ...nIssuancePolicyTokenIssuancePolicyByRef.md | 24 ++++++- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 24 ++++++- .../Remove-MgGroupAppRoleAssignment.md | 24 ++++++- .../Remove-MgServicePrincipal.md | 24 ++++++- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 24 ++++++- ...ove-MgServicePrincipalAppRoleAssignment.md | 24 ++++++- .../Remove-MgServicePrincipalByAppId.md | 24 ++++++- ...aimMappingPolicyClaimMappingPolicyByRef.md | 24 ++++++- ...ncipalDelegatedPermissionClassification.md | 24 ++++++- .../Remove-MgServicePrincipalEndpoint.md | 24 ++++++- ...veryPolicyHomeRealmDiscoveryPolicyByRef.md | 24 ++++++- .../Remove-MgServicePrincipalKey.md | 26 ++++++- ...rvicePrincipalOwnerDirectoryObjectByRef.md | 24 ++++++- .../Remove-MgServicePrincipalPassword.md | 26 ++++++- ...cipalRemoteDesktopSecurityConfiguration.md | 24 ++++++- ...pSecurityConfigurationApprovedClientApp.md | 24 ++++++- ...pSecurityConfigurationTargetDeviceGroup.md | 24 ++++++- ...emove-MgServicePrincipalSynchronization.md | 24 ++++++- ...ve-MgServicePrincipalSynchronizationJob.md | 24 ++++++- ...cePrincipalSynchronizationJobBulkUpload.md | 24 ++++++- ...ipalSynchronizationJobBulkUploadContent.md | 24 ++++++- ...ervicePrincipalSynchronizationJobSchema.md | 24 ++++++- ...ncipalSynchronizationJobSchemaDirectory.md | 24 ++++++- ...ServicePrincipalSynchronizationTemplate.md | 24 ++++++- ...ePrincipalSynchronizationTemplateSchema.md | 24 ++++++- ...lSynchronizationTemplateSchemaDirectory.md | 24 ++++++- ...ervicePrincipalTokenIssuancePolicyByRef.md | 24 ++++++- ...nIssuancePolicyTokenIssuancePolicyByRef.md | 24 ++++++- ...ervicePrincipalTokenLifetimePolicyByRef.md | 24 ++++++- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 24 ++++++- .../Remove-MgUserAppRoleAssignment.md | 24 ++++++- ...Restart-MgApplicationSynchronizationJob.md | 28 +++++++- ...rt-MgServicePrincipalSynchronizationJob.md | 28 +++++++- .../Set-MgApplicationLogo.md | 24 ++++++- .../Set-MgApplicationSynchronization.md | 26 ++++++- ...tionSynchronizationJobBulkUploadContent.md | 24 ++++++- .../Set-MgApplicationSynchronizationSecret.md | 26 ++++++- .../Set-MgApplicationVerifiedPublisher.md | 26 ++++++- .../Set-MgServicePrincipalSynchronization.md | 26 ++++++- ...ipalSynchronizationJobBulkUploadContent.md | 24 ++++++- ...MgServicePrincipalSynchronizationSecret.md | 26 ++++++- .../Start-MgApplicationSynchronizationJob.md | 24 ++++++- ...rt-MgServicePrincipalSynchronizationJob.md | 24 ++++++- ...Suspend-MgApplicationSynchronizationJob.md | 24 ++++++- ...nd-MgServicePrincipalSynchronizationJob.md | 24 ++++++- .../Test-MgApplicationProperty.md | 36 ++++++++-- ...ApplicationSynchronizationJobCredential.md | 26 ++++++- .../Test-MgServicePrincipalProperty.md | 36 ++++++++-- ...cePrincipalSynchronizationJobCredential.md | 26 ++++++- .../Update-MgApplication.md | 70 ++++++++++++------- .../Update-MgApplicationByAppId.md | 70 ++++++++++++------- .../Update-MgApplicationByUniqueName.md | 70 ++++++++++++------- .../Update-MgApplicationExtensionProperty.md | 26 ++++++- ...gApplicationFederatedIdentityCredential.md | 26 ++++++- ...cationFederatedIdentityCredentialByName.md | 26 ++++++- .../Update-MgApplicationSynchronizationJob.md | 32 +++++++-- ...ApplicationSynchronizationJobBulkUpload.md | 24 ++++++- ...e-MgApplicationSynchronizationJobSchema.md | 26 ++++++- ...cationSynchronizationJobSchemaDirectory.md | 26 ++++++- ...te-MgApplicationSynchronizationTemplate.md | 28 +++++++- ...pplicationSynchronizationTemplateSchema.md | 26 ++++++- ...nSynchronizationTemplateSchemaDirectory.md | 26 ++++++- .../Update-MgGroupAppRoleAssignment.md | 26 ++++++- .../Update-MgServicePrincipal.md | 52 ++++++++++---- ...ate-MgServicePrincipalAppRoleAssignedTo.md | 26 ++++++- ...ate-MgServicePrincipalAppRoleAssignment.md | 26 ++++++- .../Update-MgServicePrincipalByAppId.md | 52 ++++++++++---- ...ncipalDelegatedPermissionClassification.md | 26 ++++++- .../Update-MgServicePrincipalEndpoint.md | 26 ++++++- ...cipalRemoteDesktopSecurityConfiguration.md | 26 ++++++- ...pSecurityConfigurationApprovedClientApp.md | 26 ++++++- ...pSecurityConfigurationTargetDeviceGroup.md | 26 ++++++- ...te-MgServicePrincipalSynchronizationJob.md | 32 +++++++-- ...cePrincipalSynchronizationJobBulkUpload.md | 24 ++++++- ...ervicePrincipalSynchronizationJobSchema.md | 26 ++++++- ...ncipalSynchronizationJobSchemaDirectory.md | 26 ++++++- ...ServicePrincipalSynchronizationTemplate.md | 28 +++++++- ...ePrincipalSynchronizationTemplateSchema.md | 26 ++++++- ...lSynchronizationTemplateSchemaDirectory.md | 26 ++++++- .../Update-MgUserAppRoleAssignment.md | 26 ++++++- 311 files changed, 7407 insertions(+), 568 deletions(-) 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 212fac2a6850c..58f281b948049 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 @@ -555,7 +555,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyCredential ]: keyCredential [(Any) ]: This indicates any property can be added to this object. @@ -597,7 +597,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. [Proof ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -624,7 +624,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -KEYCREDENTIAL : keyCredential +KEYCREDENTIAL ``: keyCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: A 40-character binary type that can be used to identify the credential. Optional. @@ -645,7 +645,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -PASSWORDCREDENTIAL : passwordCredential +PASSWORDCREDENTIAL ``: passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -669,3 +669,25 @@ Optional. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey) - [](https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 1ca4467cfd012..da6cea12130eb 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 @@ -510,7 +510,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PasswordCredential ]: passwordCredential [(Any) ]: This indicates any property can be added to this object. @@ -531,7 +531,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -558,7 +558,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -PASSWORDCREDENTIAL : passwordCredential +PASSWORDCREDENTIAL ``: passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -582,3 +582,25 @@ Optional. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword) - [](https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 9f4125c4df45d..03cb0f1fca383 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 @@ -554,7 +554,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyCredential ]: keyCredential [(Any) ]: This indicates any property can be added to this object. @@ -596,7 +596,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. [Proof ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -623,7 +623,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -KEYCREDENTIAL : keyCredential +KEYCREDENTIAL ``: keyCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: A 40-character binary type that can be used to identify the credential. Optional. @@ -644,7 +644,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -PASSWORDCREDENTIAL : passwordCredential +PASSWORDCREDENTIAL ``: passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -668,3 +668,25 @@ Optional. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey) - [](https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 4e3aa719f1018..ab231d5ab641c 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 @@ -467,7 +467,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PasswordCredential ]: passwordCredential [(Any) ]: This indicates any property can be added to this object. @@ -488,7 +488,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -515,7 +515,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -PASSWORDCREDENTIAL : passwordCredential +PASSWORDCREDENTIAL ``: passwordCredential [(Any) ]: This indicates any property can be added to this object. [CustomKeyIdentifier ]: Do not use. [DisplayName ]: Friendly name for the password. @@ -539,3 +539,25 @@ Optional. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword) - [](https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 f805ab60e636f..fa798ffcc7e75 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 @@ -14,7 +14,7 @@ title: Add-MgServicePrincipalTokenSigningCertificate ## SYNOPSIS Create a self-signed signing certificate and return a selfSignedCertificate object, which is the public part of the generated certificate. -The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r\n+ The keyCredentials object with the following objects:\r\n + A private key object with usage set to Sign.\r\n + A public key object with usage set to Verify.\r\n+ The passwordCredentials object. +The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r+ The keyCredentials object with the following objects:\r + A private key object with usage set to Sign.\r + A public key object with usage set to Verify.\r+ The passwordCredentials object. All the objects have the same value of customKeyIdentifier. The passwordCredential is used to open the PFX file (private key). It and the associated private key object have the same value of keyId. @@ -72,7 +72,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a self-signed signing certificate and return a selfSignedCertificate object, which is the public part of the generated certificate. -The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r\n+ The keyCredentials object with the following objects:\r\n + A private key object with usage set to Sign.\r\n + A public key object with usage set to Verify.\r\n+ The passwordCredentials object. +The self-signed signing certificate is composed of the following objects, which are added to the servicePrincipal: \r+ The keyCredentials object with the following objects:\r + A private key object with usage set to Sign.\r + A public key object with usage set to Verify.\r+ The passwordCredentials object. All the objects have the same value of customKeyIdentifier. The passwordCredential is used to open the PFX file (private key). It and the associated private key object have the same value of keyId. @@ -506,12 +506,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EndDateTime ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -543,3 +543,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate) - [](https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d59b8548b3c4a..9336268f7ee0c 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher) - [](https://learn.microsoft.com/graph/api/agentidentityblueprint-unsetverifiedpublisher?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d8730af3b7278..d6961c41e689b 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 @@ -14,7 +14,7 @@ title: Confirm-MgApplicationMemberGroup ## SYNOPSIS Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. @@ -68,7 +68,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. @@ -470,11 +470,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [GroupIds ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -506,3 +506,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup) - [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 256f052a6305f..a38c3d8487016 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 @@ -462,11 +462,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Ids ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject) + + + + + + + + + + + + + + + + + + + + + + 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 fe2ea15c8d413..2ac3b19b61d9e 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 @@ -14,7 +14,7 @@ title: Confirm-MgServicePrincipalMemberGroup ## SYNOPSIS Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. @@ -69,7 +69,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. -The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +The specified object can be of one of the following types:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. @@ -470,11 +470,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [GroupIds ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -506,3 +506,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup) - [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d232cbb1f6852..26e2ab5b8cb69 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 @@ -462,11 +462,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Ids ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject) + + + + + + + + + + + + + + + + + + + + + + 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 3211ca0017e71..4ccd5f74da5ba 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 @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -418,3 +418,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory) - [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 596b884cbd1ae..a223e68ccb5e1 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 @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -418,3 +418,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory) - [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 76835122dfb25..df2220dbcc235 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 @@ -383,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory) - [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 8e9fd0ba7bd56..4415a89e23355 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 @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -417,3 +417,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory) - [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 4e3355f20d745..71957537dda4c 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 @@ -598,7 +598,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -631,3 +631,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication) - [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 7a401d15aa52a..06082186349b2 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 @@ -480,3 +480,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy) + + + + + + + + + + + + + + + + + + + + + + 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 cab99321493e7..744e6fb859da7 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 @@ -436,3 +436,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref) + + + + + + + + + + + + + + + + + + + + + + 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 490029e954f8c..676a897e58330 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 c66950d8a2e49..a3ba0703dc5b9 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid) - [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 0052e15a28542..644f7dc64abac 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 @@ -389,7 +389,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Ids ]: [Types ]: @@ -399,3 +399,25 @@ BODYPARAMETER : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -376,3 +376,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename) - [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 39e109f574556..d80cad897b390 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 @@ -304,3 +304,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount) + + + + + + + + + + + + + + + + + + + + + + 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 5df2771a6a4e7..0053c255178e1 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 @@ -345,7 +345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -376,3 +376,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof) + + + + + + + + + + + + + + + + + + + + + + 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 f2d844c78cef1..b865b58ecb9a9 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 @@ -459,3 +459,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta) - [](https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ddaf602c57201..0aa2132c1618e 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 @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty) - [](https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d1ac5b80d630e..1ab041065a300 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount) + + + + + + + + + + + + + + + + + + + + + + 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 87cf671840d5d..13239ef5abc6e 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 @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d639a57d0ee9c..51601562a2397 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 @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -398,3 +398,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 03b2b53117f66..bba86ab7e3bf8 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount) + + + + + + + + + + + + + + + + + + + + + + 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 aff0f749c6a66..36fcf67b34f6f 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 @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy) + + + + + + + + + + + + + + + + + + + + + + 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 0ef144ab4f60c..9b66055728f8c 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 48e0b3fa1bd19..d8dfacb2d0b65 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 @@ -343,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo) + + + + + + + + + + + + + + + + + + + + + + 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 4064408ac5551..94fd4ef51846d 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 @@ -470,11 +470,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -506,3 +506,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup) - [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3a25ef063af8a..b3f5bb5f1cfce 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 @@ -13,7 +13,7 @@ title: Get-MgApplicationMemberObject ## SYNOPSIS -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. ## SYNTAX @@ -64,7 +64,7 @@ This cmdlet has the following aliases, ## DESCRIPTION -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. ## EXAMPLES @@ -464,11 +464,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -500,3 +500,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject) - [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 62f0649a51e78..12241e4d71d3e 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 @@ -501,3 +501,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner) - [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 de48b8912bda7..5124593cfcbd2 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 630c8f6a42ac9..6046254bfb175 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 25c5bd5590200..12ff679c73ad8 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 d698f33f418ab..5310c20814e52 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser) + + + + + + + + + + + + + + + + + + + + + + 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 d321c98f9908d..428174a3efc95 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 @@ -459,3 +459,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref) - [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 38232bf3e5fda..c7aa11e494766 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount) + + + + + + + + + + + + + + + + + + + + + + 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 532614298f020..7400457d0f214 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 99e247d7d33ae..da2d425c7460a 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 0325eaf56f8f6..e039bd6d0a8fb 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 3f651be023686..502c8610a4a4b 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser) + + + + + + + + + + + + + + + + + + + + + + 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 649249eba520d..6e821dfdf7534 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 @@ -343,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 b3efec59c2418..af19cdbab17d7 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 @@ -493,7 +493,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Credentials ]: [Key ]: synchronizationSecret @@ -503,7 +503,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken) - [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 5208391c57b98..10a2f0e693ea2 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 @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob) + + + + + + + + + + + + + + + + + + + + + + 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 ebb0bf0c59742..9a41391795fe3 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 @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 7951e99588f2d..8b5205825c091 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 f4a8ffe25375a..473eb05738c68 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount) + + + + + + + + + + + + + + + + + + + + + + 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 6d57d5aa9bf1d..007d1615f7d14 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 @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema) + + + + + + + + + + + + + + + + + + + + + + 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 b84a9ab3a4db8..1d9e0d790e461 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 @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -614,3 +614,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 913ccb3a2d77c..9accd92d12fd5 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount) + + + + + + + + + + + + + + + + + + + + + + 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 3f1a454700db1..9278c275ea4e2 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount) + + + + + + + + + + + + + + + + + + + + + + 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 524a8aec3797e..f4d0cfd6e5d80 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 @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 c7d99aeb629c3..df83297839b09 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount) + + + + + + + + + + + + + + + + + + + + + + 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 9c8abe2e70542..3a34ae5ba84b2 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 @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 451d6ad9f86a1..7e5c231225b0b 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 @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -614,3 +614,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 e08b6d17e920a..25e702b8d1e39 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount) + + + + + + + + + + + + + + + + + + + + + + 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 ef4ad2ebedb22..76c36789b1e20 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 @@ -531,7 +531,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate) - [](https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c221228c71c97..63de6fa4b0dd8 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 @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount) + + + + + + + + + + + + + + + + + + + + + + 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 a64613c51a0b3..a15cd660d87ca 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 @@ -479,3 +479,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy) - [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 b6ba17158fcae..faf0a6b831249 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 @@ -437,3 +437,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref) - [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 042b0b17458aa..8a07d06e32424 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 f5859b7497ece..99ae610875d4a 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 @@ -481,3 +481,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy) - [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 aca7834fcc3ac..fcc7526f2fdd0 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 @@ -439,3 +439,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 a609fd2448739..08b92f93f782c 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 43565d3ff2adf..1f8beaf490c31 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 @@ -586,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -618,3 +618,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment) - [](https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ee82b22cd9991..a97349a172fea 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount) + + + + + + + + + + + + + + + + + + + + + + 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 7fe6267e3ea6d..4de867f918a84 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 @@ -607,7 +607,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -640,3 +640,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal) - [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c22f3b3b4102d..c02b7a2743d63 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy) + + + + + + + + + + + + + + + + + + + + + + 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 7ac1ebdeccc3b..883da38813152 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 594a71ecfdbf4..8fd564f424456 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 @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto) - [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c3105a440257b..eb4b33a2293ed 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 @@ -340,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,3 +371,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount) + + + + + + + + + + + + + + + + + + + + + + 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 f3b6e8dcfec05..88b996c38233d 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 @@ -598,7 +598,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -631,3 +631,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment) - [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d2bd57924a81f..8c24be4217eb1 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount) + + + + + + + + + + + + + + + + + + + + + + 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 6e673e0c4ab18..c62c31a060f1f 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 @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -376,3 +376,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid) - [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 593cc9900e88d..ed29028d42c20 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 @@ -389,7 +389,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Ids ]: [Types ]: @@ -399,3 +399,25 @@ BODYPARAMETER : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 09ed774e8aa14..2edff97c4290a 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 @@ -304,3 +304,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount) + + + + + + + + + + + + + + + + + + + + + + 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 9d3418d85d805..bf5c474a86163 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 @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -588,3 +588,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 2a14cd274b69e..a5710289a5267 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 51e8dde4d2295..9e4ea4a829965 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 @@ -340,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,3 +371,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount) + + + + + + + + + + + + + + + + + + + + + + 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 f7fce6733f43e..89a4c3082c3b3 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 13dd233470bb4..7ac87d28ca745 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 @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 80c0e52775f60..f23394eede4e6 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount) + + + + + + + + + + + + + + + + + + + + + + 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 55ee40fd6eb78..9ada93ede02f1 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 @@ -459,3 +459,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 9276e26b0bcef..8d291226fe94a 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 @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -584,3 +584,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 a54678553fd6b..50957c0a6e78d 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 @@ -340,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,3 +371,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount) + + + + + + + + + + + + + + + + + + + + + + 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 6150a282f0a2c..b9e97dd54b03b 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 @@ -478,3 +478,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 55bebab399350..8a7382c59b01b 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 @@ -436,3 +436,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 f8f4ff6e3590d..6ff609bd1d651 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 b819e86e90015..ec728a8195d47 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 @@ -469,11 +469,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -505,3 +505,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup) - [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e0b9923390ce6..1cea4a42aedf1 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 @@ -13,7 +13,7 @@ title: Get-MgServicePrincipalMemberObject ## SYNOPSIS -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. ## SYNTAX @@ -64,7 +64,7 @@ This cmdlet has the following aliases, ## DESCRIPTION -Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. +Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. ## EXAMPLES @@ -463,11 +463,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SecurityEnabledOnly ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -499,3 +499,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject) - [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e6e6a90c11ba9..514dc6a9fe6f2 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 @@ -580,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -612,3 +612,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c1b77408e8598..2d38734c4c509 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit) + + + + + + + + + + + + + + + + + + + + + + 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 1d9ac5856b730..7171a71d23510 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole) + + + + + + + + + + + + + + + + + + + + + + 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 5d2775654c012..b70009607cbdd 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 @@ -576,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 1671b1a05d620..64e5bdb316074 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount) + + + + + + + + + + + + + + + + + + + + + + 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 13e9fd56ae77f..2d86d3746d8ae 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit) + + + + + + + + + + + + + + + + + + + + + + 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 0fc8520f9f3b1..97e8fd8d65aa0 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole) + + + + + + + + + + + + + + + + + + + + + + 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 ab203cc15dd97..e40f23cb486cd 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 e7eb0baafccdf..f83616131190e 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 @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -588,3 +588,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 bc4a9d7d46e00..11c18516198e6 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount) + + + + + + + + + + + + + + + + + + + + + + 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 d46887c73994d..db17566e133cf 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 @@ -557,7 +557,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -589,3 +589,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 51d1c3417ef78..01c943ad35a7d 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 01f7557f54017..936b8bb6dbc4a 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication) + + + + + + + + + + + + + + + + + + + + + + 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 db440943a0b45..bee4dd50ea42c 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 bb563d314e882..c2bc6c74eaa71 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 9a69dae713baf..67b88bc05c900 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 @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 11e56dc5216b1..0b340f1e77865 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 @@ -340,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -371,3 +371,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount) + + + + + + + + + + + + + + + + + + + + + + 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 0a0da4085a68b..c23dfcdb68825 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 fedda1063e19c..fdfb62120a43a 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication) + + + + + + + + + + + + + + + + + + + + + + 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 998a94a60c670..7b0cdad5b379f 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 c1e437093865f..213e13ae6dbcf 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 d6dfe472d8778..13f3854db6866 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 e1b45c4e7f548..265c3678a56d4 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 @@ -505,3 +505,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner) + + + + + + + + + + + + + + + + + + + + + + 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 97e7aab5270c1..25cc0a2d12026 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 2e88e34cdb86e..e5b51f566509c 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 @@ -576,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 bd184b3a9c055..a321140204fde 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 1256dc58c08e0..19205b84120cc 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 @@ -576,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser) + + + + + + + + + + + + + + + + + + + + + + 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 bf935fc0f05a9..77a9feca62973 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 @@ -461,3 +461,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref) + + + + + + + + + + + + + + + + + + + + + + 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 5c8ea86db434b..3f6f7f2350328 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount) + + + + + + + + + + + + + + + + + + + + + + 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 fe38e3c36c797..df3c7b99f12f5 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 fe43409cc6597..132db211745f4 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 422078df467d9..255160d6eabf0 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal) + + + + + + + + + + + + + + + + + + + + + + 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 655810e433562..d8eaadcf60a45 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser) + + + + + + + + + + + + + + + + + + + + + + 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 db22f46295e91..344bc66c610c5 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 @@ -346,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -378,3 +378,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration) - [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 index 0c36356a02f33..77a87bf2b3195 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) - [](https://learn.microsoft.com/graph/api/approvedclientapp-get?view=graph-rest-1.0) - [](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 index 92900eb21e148..68af557cff9fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](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 24064d53d4d28..d1abc1e7b9d6b 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 @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -586,3 +586,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) - [](https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 10d33da8f3f74..39a71dc06cb1c 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 @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount) + + + + + + + + + + + + + + + + + + + + + + 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 d83975d058c28..2359f363a3a34 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 @@ -343,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 d630340a8aeb7..024e7d7585e26 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 @@ -486,7 +486,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Credentials ]: [Key ]: synchronizationSecret @@ -496,7 +496,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken) - [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ca5902a66ff14..df11f411c53c3 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 @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 dafc8d3cbb417..ad7a3576de986 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 042f4e0b71d7f..f8042f99f09db 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 @@ -362,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -393,3 +393,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 ffe92576b5408..e7adc1f5f875c 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount) + + + + + + + + + + + + + + + + + + + + + + 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 91697d44690ed..6e5c6b7d62465 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 f1dd75b538f97..97f9f36ecefbb 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 @@ -582,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -613,3 +613,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 c0d9ba6ffc744..3d202b4cac063 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount) + + + + + + + + + + + + + + + + + + + + + + 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 fbf1256a76646..f19a058c54b1d 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount) + + + + + + + + + + + + + + + + + + + + + + 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 9a4b1a55e5c2c..1743d49651b28 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 @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -584,3 +584,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate) - [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e146e748cd4ff..bc8d0eb0609f5 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount) + + + + + + + + + + + + + + + + + + + + + + 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 ac18d21893810..1dd729413c9f7 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 @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 6983ab522f3a3..5204cd3e727cc 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 @@ -582,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -613,3 +613,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 646e7465f3ef5..03b33fb174c2f 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount) + + + + + + + + + + + + + + + + + + + + + + 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 f3c2f74ea3216..05757863f6ef7 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 @@ -479,3 +479,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy) + + + + + + + + + + + + + + + + + + + + + + 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 720b614249c2a..6f22ed4def7a9 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 @@ -435,3 +435,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref) + + + + + + + + + + + + + + + + + + + + + + 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 e8ec010b588b9..762ece352e66e 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 1815228c80d49..91a3964bc5aa7 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 @@ -480,3 +480,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d9f927bee5e14..5a3fe618979e2 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 @@ -438,3 +438,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 99b589919807d..b5253ae5af8c9 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 @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount) + + + + + + + + + + + + + + + + + + + + + + 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 2f9525c055f75..d33e94e012a73 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 @@ -574,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -606,3 +606,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof) - [](https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 95b21c60149a2..35971b571ff70 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit) + + + + + + + + + + + + + + + + + + + + + + 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 71745b405927c..fdcb69624b4bf 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole) + + + + + + + + + + + + + + + + + + + + + + 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 3dc74fa72d25a..de871ab38fb3e 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 @@ -577,7 +577,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 06d39708cf139..fd1c58ccefc9f 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount) + + + + + + + + + + + + + + + + + + + + + + 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 aa72ab8de6b10..455eb784fa3c8 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit) + + + + + + + + + + + + + + + + + + + + + + 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 842fe8eb51141..914b692d0f9b3 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole) + + + + + + + + + + + + + + + + + + + + + + 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 796bde83bb5bf..e4ef30b1b58cb 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 @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup) + + + + + + + + + + + + + + + + + + + + + + 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 60bc3e63ea278..4e537f4d60e8e 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 @@ -589,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -621,3 +621,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment) - [](https://learn.microsoft.com/graph/api/agentuser-list-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 b9e3bdbcc8065..49ab72ab3640c 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 @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount) + + + + + + + + + + + + + + + + + + + + + + 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 b9b4913ca7695..e311c83fb679a 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 @@ -496,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 6dbdc2be4b81d..ade03f56afdc3 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 @@ -496,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c3e61b1a9f17a..a7523a3f07b67 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 @@ -493,7 +493,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 f6466b54d37cc..6c543c98ab9fa 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 @@ -495,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -527,3 +527,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 01671f95ce2d2..d5b0e1ad61080 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 @@ -496,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 9739e8f5fbfb3..eade2660cd443 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 @@ -496,7 +496,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ff2843b4704c4..5e203779cad45 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 @@ -493,7 +493,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3881544ac1d94..5db5a9eadaf87 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 @@ -495,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -527,3 +527,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3d9d340eeb404..fc6181afb20c4 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 @@ -493,12 +493,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [ServiceManagementReference ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -530,3 +530,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate) - [](https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 7da404398f846..44cf3773cff22 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 @@ -552,7 +552,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -602,7 +602,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -629,7 +629,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION : attributeDefinition +TARGETATTRIBUTEDEFINITION ``: attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -662,7 +662,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT : expressionInputObject +TESTINPUTOBJECT ``: expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -712,3 +712,25 @@ Not nullable. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 48de4ca22ec20..a2d21a7da89af 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 @@ -554,7 +554,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -604,7 +604,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -631,7 +631,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION : attributeDefinition +TARGETATTRIBUTEDEFINITION ``: attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -664,7 +664,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT : expressionInputObject +TESTINPUTOBJECT ``: expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -714,3 +714,25 @@ Not nullable. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 fe89d40050629..fcf08913fd19e 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 @@ -553,7 +553,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -603,7 +603,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -630,7 +630,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION : attributeDefinition +TARGETATTRIBUTEDEFINITION ``: attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -663,7 +663,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT : expressionInputObject +TESTINPUTOBJECT ``: expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -713,3 +713,25 @@ Not nullable. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 9707f249660ba..9bc63d9008c5c 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 @@ -553,7 +553,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Expression ]: [TargetAttributeDefinition ]: attributeDefinition @@ -603,7 +603,7 @@ Not nullable. [Properties ]: Property values of the test object. [Key ]: Key. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -630,7 +630,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -TARGETATTRIBUTEDEFINITION : attributeDefinition +TARGETATTRIBUTEDEFINITION ``: attributeDefinition [(Any) ]: This indicates any property can be added to this object. [Anchor ]: true if the attribute should be used as the anchor for the object. Anchor attributes must have a unique value identifying an object, and must be immutable. @@ -663,7 +663,7 @@ If during synchronization, the required attribute has no value, the default valu If default the value was not set, synchronization will record an error. [Type ]: attributeType -TESTINPUTOBJECT : expressionInputObject +TESTINPUTOBJECT ``: expressionInputObject [(Any) ]: This indicates any property can be added to this object. [Definition ]: objectDefinition [(Any) ]: This indicates any property can be added to this object. @@ -713,3 +713,25 @@ Not nullable. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3b3065af0751b..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 @@ -727,3 +727,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserAppRoleAssignment](Update-MgUserAppRoleAssignment.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 c0b470281ae72..b657744563fa3 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 @@ -1601,7 +1601,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API : apiApplication +API ``: apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -1629,8 +1629,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -1720,18 +1720,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS : authenticationBehaviors +AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER : application +BODYPARAMETER ``: application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1775,8 +1775,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -1869,8 +1869,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2440,13 +2440,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION : certification +CERTIFICATION ``: certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF : directoryObject +CREATEDONBEHALFOF ``: directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2532,7 +2532,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2566,7 +2566,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS : optionalClaims +OPTIONALCLAIMS ``: optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -2589,7 +2589,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS : parentalControlSettings +PARENTALCONTROLSETTINGS ``: parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -2618,13 +2618,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT : publicClientApplication +PUBLICCLIENT ``: publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION : requestSignatureVerification +REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -2646,7 +2646,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -2657,11 +2657,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA : spaApplication +SPA ``: spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2950,13 +2950,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB : webApplication +WEB ``: webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -2974,3 +2974,25 @@ WEB : webApplication - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication) - [](https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ce9a15cb1fd08..00149a92dbe35 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 @@ -490,12 +490,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -527,3 +527,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref) - [](https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3bb1f0eb9e04e..c956b98670cb3 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 @@ -677,7 +677,7 @@ 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 : extensionProperty +BODYPARAMETER ``: extensionProperty [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -703,7 +703,7 @@ Supports $filter (eq). Not nullable. UserGroupAdministrativeUnitApplicationDeviceOrganization -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -735,3 +735,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty) - [](https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c190f93468c81..40be2c370b659 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 @@ -633,7 +633,7 @@ 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 : federatedIdentityCredential +BODYPARAMETER ``: federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -664,7 +664,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -696,3 +696,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 438556c4f6e25..d0a3b5627fa73 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 @@ -485,12 +485,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -522,3 +522,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref) - [](https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 86a7bc4cf01bc..460e4b896f58b 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 @@ -637,7 +637,7 @@ 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 : synchronizationJob +BODYPARAMETER ``: synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -864,7 +864,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -891,7 +891,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE : synchronizationSchedule +SCHEDULE ``: synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -901,7 +901,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1039,7 +1039,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS : synchronizationStatus +STATUS ``: synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1116,3 +1116,25 @@ Some settings are inherited from the template. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob) + + + + + + + + + + + + + + + + + + + + + + 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 455b327327856..7e8ced58754b1 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 @@ -495,7 +495,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Parameters ]: [RuleId ]: The identifier of the synchronizationRule to be applied. @@ -512,7 +512,7 @@ Can be one of the following: An onPremisesDistinguishedName for synchronization Can be one of the following: user for synchronizing between Active Directory and Azure AD.User for synchronizing a user between Microsoft Entra ID and a third-party application. Worker for synchronization a user between Workday and either Active Directory or Microsoft Entra ID.Group for synchronizing a group between Microsoft Entra ID and a third-party application. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -559,3 +559,25 @@ Worker for synchronization a user between Workday and either Active Directory or - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 59097f68b6786..b98dc6b551a7d 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 @@ -662,7 +662,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -715,7 +715,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -786,3 +786,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 cc5c04faeb09e..851264b3c997d 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 @@ -661,7 +661,7 @@ 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 : synchronizationTemplate +BODYPARAMETER ``: synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -813,7 +813,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -845,7 +845,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -987,3 +987,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 e50c83999bdfe..6f71a0bb2a4a1 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 @@ -662,7 +662,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -715,7 +715,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -786,3 +786,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 449a7f3e1a43a..94bf8844c20eb 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 @@ -486,12 +486,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -523,3 +523,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref) - [](https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 baf3fd674c25e..c2732798d7502 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 @@ -488,12 +488,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 437b2b6c27060..4626da68d9150 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 @@ -720,7 +720,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -750,7 +750,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -782,3 +782,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment) - [](https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 4b4f77f4d94c0..9c929e27c6de0 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 @@ -1809,12 +1809,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER : servicePrincipal +BODYPARAMETER ``: servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1952,8 +1952,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2154,8 +2154,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -2629,7 +2629,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2720,8 +2720,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -2761,7 +2761,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2785,11 +2785,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3084,7 +3084,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3095,3 +3095,25 @@ VERIFIEDPUBLISHER : verifiedPublisher - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 82b550bad58d4..946e1e6f07c17 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 @@ -710,7 +710,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -740,7 +740,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -772,3 +772,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 0fde3468e967e..a66296c880027 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 @@ -710,7 +710,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -740,7 +740,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -772,3 +772,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 51c8639243847..31e23fcc58164 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 @@ -486,12 +486,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -523,3 +523,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 fb28a7235a0ee..af83b19cdcd10 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 @@ -553,7 +553,7 @@ 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 : delegatedPermissionClassification +BODYPARAMETER ``: delegatedPermissionClassification [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -564,7 +564,7 @@ Doesn't support $filter. [PermissionName ]: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Doesn't support $filter. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 0d81e3f954818..706514ac61bdb 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 @@ -627,7 +627,7 @@ 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 : endpoint +BODYPARAMETER ``: endpoint [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -639,7 +639,7 @@ Read-only. [ProviderResourceId ]: [Uri ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -670,3 +670,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 6dd6aeb12fe9c..a6d16b372f8a9 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 @@ -486,12 +486,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -523,3 +523,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ec8418f32d7ef..0c2e7924c3dc3 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 @@ -485,12 +485,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -522,3 +522,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 index ba02ccd6ea6b3..4886a335afed3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -497,13 +497,13 @@ 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 +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 +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) - [](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 64f7f3d745c9a..1d8c95e95c7fd 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 @@ -498,13 +498,13 @@ 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 : targetDeviceGroup +BODYPARAMETER ``: targetDeviceGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -536,3 +536,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) - [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d9600e3c66575..b6c95ed9920d1 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 @@ -642,7 +642,7 @@ 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 : synchronizationJob +BODYPARAMETER ``: synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -869,7 +869,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -896,7 +896,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE : synchronizationSchedule +SCHEDULE ``: synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -906,7 +906,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1044,7 +1044,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS : synchronizationStatus +STATUS ``: synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1122,3 +1122,25 @@ Some settings are inherited from the template. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 089b59b55db35..ef9addf136647 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 @@ -560,7 +560,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Parameters ]: [RuleId ]: The identifier of the synchronizationRule to be applied. @@ -577,7 +577,7 @@ Can be one of the following: An onPremisesDistinguishedName for synchronization Can be one of the following: user for synchronizing between Active Directory and Azure AD.User for synchronizing a user between Microsoft Entra ID and a third-party application. Worker for synchronization a user between Workday and either Active Directory or Microsoft Entra ID.Group for synchronizing a group between Microsoft Entra ID and a third-party application. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -624,3 +624,25 @@ Worker for synchronization a user between Workday and either Active Directory or - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 2a44e1a9dc4c1..9b5287170ca59 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 @@ -661,7 +661,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -714,7 +714,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -785,3 +785,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 715369ca905cb..6bb4ece0602eb 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 @@ -661,7 +661,7 @@ 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 : synchronizationTemplate +BODYPARAMETER ``: synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -813,7 +813,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -845,7 +845,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -987,3 +987,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 5fc6dbdc1fd4d..91c4bd4019485 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 @@ -661,7 +661,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -714,7 +714,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -785,3 +785,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 7a80e2874d497..96b5252229543 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 @@ -484,12 +484,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -520,3 +520,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref) + + + + + + + + + + + + + + + + + + + + + + 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 d58b3031b4272..5720073755826 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 @@ -488,12 +488,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 edad0b4a065d5..163264c003eea 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 @@ -708,7 +708,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -738,7 +738,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -770,3 +770,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment) - [](https://learn.microsoft.com/graph/api/agentuser-post-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 27c74f821f66f..db4f4452d4bf2 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 @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -419,3 +419,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication) - [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d24d87f835633..9dfe37dce558b 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -439,3 +439,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref) - [](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 a4f761340551b..728824c706406 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 @@ -390,7 +390,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -422,3 +422,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid) - [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 bdc0c332adfe7..ddb2d17335dd2 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 @@ -390,7 +390,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -422,3 +422,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename) - [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 50b50945ff7e3..10060e3b450aa 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty) - [](https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 03ba83a6e249f..9a1dc17d340fb 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 65aadea3ab96e..6c832ec6e1a81 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 77359abca54e5..34beb62e2ded5 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 @@ -516,12 +516,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: [Proof ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -553,3 +553,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey) - [](https://learn.microsoft.com/graph/api/agentidentityblueprint-removekey?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 4205d74830841..f1ab8ed62af37 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 @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -418,3 +418,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo) + + + + + + + + + + + + + + + + + + + + + + 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 16e2da5beae8f..8cd1d71ba8a51 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref) - [](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e0eb7d0509534..7d086c724d1b2 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 @@ -485,11 +485,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -521,3 +521,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword) - [](https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ea76ac2111733..9fe505069cd2b 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 @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 81c03941a20d9..38481bbff0aa8 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob) + + + + + + + + + + + + + + + + + + + + + + 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 14130d0a327ed..089e9e85c62e8 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 b2079a6f80e76..5195e94513635 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 d05a4f6f046a7..cc1a38c0dbead 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema) + + + + + + + + + + + + + + + + + + + + + + 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 70ac9ec1228a3..33367aaa614e4 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 @@ -428,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -459,3 +459,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 9f20ed0b40348..abfe47ff2532c 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 84eb8ab0dae6b..3b754ad4e6aaf 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 34b5d25bbddec..2bd5fff29c321 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 @@ -428,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -459,3 +459,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 1418cf616cebc..9c47e29e5377f 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref) - [](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 6432996408400..f6e8250e2e6a5 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 5c13ec9f2b8cf..fd0550bc291f8 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 @@ -403,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -435,3 +435,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment) - [](https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d455164c1bdd0..37a90bbc7507d 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 @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 bd3a112da4808..b95d189985684 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 @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 9e8b90a6150f0..8c2e8bee02f1f 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 1440709015099..e77b44a23d824 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 @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -418,3 +418,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 1e5cc59e77b2f..6e0d188605c7f 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ff090cedf8a3a..f3540c658a192 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 @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ccfeadbfcfe54..0e2964a2cd6e0 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 c54187879b5a4..109720232781f 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 8597e96c11a33..4f9df8d71c776 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 @@ -517,12 +517,12 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: [Proof ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -554,3 +554,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey) - [](https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 a9cd71f5234b4..7b98a32721c00 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 @@ -410,7 +410,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -442,3 +442,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 90144839c829c..818cec23a1560 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 @@ -484,11 +484,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeyId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -520,3 +520,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword) - [](https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 26d710ffa10fc..ab507f8ea877c 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 @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 index cca0a2581337e..d6822ea5bed9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) - [](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 2097a3b521d92..e16b1827f1dfc 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 @@ -409,7 +409,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -441,3 +441,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) - [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e17d3c2bbcde7..ace5803e5c842 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 @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 dbc37aaa64e6f..232a06a9e888c 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 63b2b13ad3edc..e5f16894bf944 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 ccaefebcc69df..e0d64d0262405 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 569a1418ae40e..8855b5bc5aea6 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema) + + + + + + + + + + + + + + + + + + + + + + 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 beb53d23b9caf..a1f3008ae2930 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 @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -458,3 +458,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 78a1db501bcd2..9ccc7c9613d30 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 abfcc9fb5fcf0..a6d6aa0bfe08d 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 @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 712ccaf69e6dc..1fc2a151e03b0 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 @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -458,3 +458,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 28d8eb6429ba7..0e17aaa49955a 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref) + + + + + + + + + + + + + + + + + + + + + + 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 0beabc50f6f66..9fc927909188f 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 @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -438,3 +438,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref) + + + + + + + + + + + + + + + + + + + + + + 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 39dbf3ad3bbc8..573e266feabbb 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 30ff71a069bf4..5aba51173c10c 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 @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref) - [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3afc56c529b94..2fc11d4db5698 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 @@ -403,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -435,3 +435,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment) - [](https://learn.microsoft.com/graph/api/user-delete-approleassignments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d4eaa5053bcd3..b5e82304c0ff7 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 @@ -514,17 +514,17 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Criteria ]: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -CRITERIA : synchronizationJobRestartCriteria +CRITERIA ``: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 2033864443ccc..656c474eb738b 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 @@ -519,17 +519,17 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Criteria ]: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -CRITERIA : synchronizationJobRestartCriteria +CRITERIA ``: synchronizationJobRestartCriteria [(Any) ]: This indicates any property can be added to this object. [ResetScope ]: synchronizationJobRestartScope -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -561,3 +561,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 35f520719e543..d29d62a58f380 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 @@ -439,7 +439,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -470,3 +470,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo) + + + + + + + + + + + + + + + + + + + + + + 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 c6937d15fcfce..4d11aa356144f 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 @@ -551,7 +551,7 @@ 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 : synchronization +BODYPARAMETER ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -798,7 +798,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Value ]: Value of the metadata property. [Schema ]: synchronizationSchema -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -1210,3 +1210,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 9483e9fac2a7b..4517c32e5ac97 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 @@ -460,7 +460,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -491,3 +491,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 fea381f0ad83d..9d7b6ac438279 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 @@ -466,13 +466,13 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Value ]: [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -507,3 +507,25 @@ VALUE : . ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret) + + + + + + + + + + + + + + + + + + + + + + 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 8f2a79a829ad6..135bae30c929d 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 @@ -488,11 +488,11 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [VerifiedPublisherId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -524,3 +524,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher) - [](https://learn.microsoft.com/graph/api/agentidentityblueprint-setverifiedpublisher?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 db531fa851abe..53c07a857990a 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 @@ -551,7 +551,7 @@ 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 : synchronization +BODYPARAMETER ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -798,7 +798,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Value ]: Value of the metadata property. [Schema ]: synchronizationSchema -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -1210,3 +1210,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization) + + + + + + + + + + + + + + + + + + + + + + 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 c62a457eacb79..77c62c3054f58 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 @@ -459,7 +459,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -490,3 +490,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent) + + + + + + + + + + + + + + + + + + + + + + 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 4c592a2c60e09..d8053bbe34367 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 @@ -484,13 +484,13 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Value ]: [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -526,3 +526,25 @@ VALUE : . - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret) - [](https://learn.microsoft.com/graph/api/synchronization-serviceprincipal-put-synchronization?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e2b49c9083773..d190bafca64e9 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 @@ -393,7 +393,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 b75023c060ef2..83d4e1e1156c8 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 @@ -391,7 +391,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 b4932c859e4a1..36bcaf1e5a7c9 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 @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -419,3 +419,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 71513ded04950..09107e5665596 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 @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -417,3 +417,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 3566382ef82e2..d4798953e238f 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 @@ -16,9 +16,9 @@ title: Test-MgApplicationProperty Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r\n1. -Validate the prefix and suffix naming policy\r\n2. -Validate the custom banned words policy\r\n3. +The following policy validations are performed for the display name and mail nickname properties:\r1. +Validate the prefix and suffix naming policy\r2. +Validate the custom banned words policy\r3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. @@ -56,9 +56,9 @@ This cmdlet has the following aliases, Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r\n1. -Validate the prefix and suffix naming policy\r\n2. -Validate the custom banned words policy\r\n3. +The following policy validations are performed for the display name and mail nickname properties:\r1. +Validate the prefix and suffix naming policy\r2. +Validate the custom banned words policy\r3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. @@ -467,7 +467,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EntityType ]: @@ -479,3 +479,25 @@ BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ApplicationIdentifier ]: [Credentials ]: @@ -611,7 +611,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -643,3 +643,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 babc703d30b5f..0b3f14161d6bb 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 @@ -16,9 +16,9 @@ title: Test-MgServicePrincipalProperty Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r\n1. -Validate the prefix and suffix naming policy\r\n2. -Validate the custom banned words policy\r\n3. +The following policy validations are performed for the display name and mail nickname properties:\r1. +Validate the prefix and suffix naming policy\r2. +Validate the custom banned words policy\r3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. @@ -56,9 +56,9 @@ This cmdlet has the following aliases, Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. -The following policy validations are performed for the display name and mail nickname properties:\r\n1. -Validate the prefix and suffix naming policy\r\n2. -Validate the custom banned words policy\r\n3. +The following policy validations are performed for the display name and mail nickname properties:\r1. +Validate the prefix and suffix naming policy\r2. +Validate the custom banned words policy\r3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. @@ -467,7 +467,7 @@ 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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: [EntityType ]: @@ -479,3 +479,25 @@ BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ApplicationIdentifier ]: [Credentials ]: @@ -610,7 +610,7 @@ CREDENTIALS : . [Key ]: synchronizationSecret [Value ]: The value of the secret. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -642,3 +642,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 d5695e26eba86..2ad66d70959de 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 @@ -2036,7 +2036,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API : apiApplication +API ``: apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2064,8 +2064,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2155,18 +2155,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS : authenticationBehaviors +AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER : application +BODYPARAMETER ``: application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2210,8 +2210,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2304,8 +2304,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2875,13 +2875,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION : certification +CERTIFICATION ``: certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF : directoryObject +CREATEDONBEHALFOF ``: directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2967,7 +2967,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2979,7 +2979,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3028,7 +3028,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS : optionalClaims +OPTIONALCLAIMS ``: optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3051,7 +3051,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS : parentalControlSettings +PARENTALCONTROLSETTINGS ``: parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3080,13 +3080,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT : publicClientApplication +PUBLICCLIENT ``: publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION : requestSignatureVerification +REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3108,7 +3108,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3119,11 +3119,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA : spaApplication +SPA ``: spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3412,13 +3412,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB : webApplication +WEB ``: webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3436,3 +3436,25 @@ WEB : webApplication - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication) - [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 dbac0f2f90101..9c40f30976a3c 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 @@ -2037,7 +2037,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API : apiApplication +API ``: apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2065,8 +2065,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2156,18 +2156,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS : authenticationBehaviors +AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER : application +BODYPARAMETER ``: application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2211,8 +2211,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2305,8 +2305,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2876,13 +2876,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION : certification +CERTIFICATION ``: certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF : directoryObject +CREATEDONBEHALFOF ``: directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2968,7 +2968,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2980,7 +2980,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3029,7 +3029,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS : optionalClaims +OPTIONALCLAIMS ``: optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3052,7 +3052,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS : parentalControlSettings +PARENTALCONTROLSETTINGS ``: parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3081,13 +3081,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT : publicClientApplication +PUBLICCLIENT ``: publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION : requestSignatureVerification +REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3109,7 +3109,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3120,11 +3120,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA : spaApplication +SPA ``: spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3413,13 +3413,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB : webApplication +WEB ``: webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3437,3 +3437,25 @@ WEB : webApplication - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid) - [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 1bec649e18ef8..40345426debe5 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 @@ -2049,7 +2049,7 @@ Required. [Value ]: Value for the key-value pair. [Type ]: The unique name for the functionality exposed by the app. -API : apiApplication +API ``: apiApplication [(Any) ]: This indicates any property can be added to this object. [AcceptMappedClaims ]: When true, allows an application to use claims mapping without specifying a custom signing key. [KnownClientApplications ]: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. @@ -2077,8 +2077,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2168,18 +2168,18 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -AUTHENTICATIONBEHAVIORS : authenticationBehaviors +AUTHENTICATIONBEHAVIORS ``: authenticationBehaviors [(Any) ]: This indicates any property can be added to this object. [BlockAzureAdGraphAccess ]: [RemoveUnverifiedEmailClaim ]: [RequireClientServicePrincipal ]: -BODYPARAMETER : application +BODYPARAMETER ``: application [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2223,8 +2223,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [PreAuthorizedApplications ]: Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. @@ -2317,8 +2317,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2888,13 +2888,13 @@ Read-only. [Uri ]: [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -CERTIFICATION : certification +CERTIFICATION ``: certification [(Any) ]: This indicates any property can be added to this object. [CertificationExpirationDateTime ]: The timestamp when the current certification for the application expires. [IsPublisherAttested ]: Indicates whether the application developer or publisher completed Publisher Attestation. [LastCertificationDateTime ]: The timestamp when the certification for the application was most recently added or updated. -CREATEDONBEHALFOF : directoryObject +CREATEDONBEHALFOF ``: directoryObject [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2980,7 +2980,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -2992,7 +2992,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3041,7 +3041,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Type ]: The type of key credential; for example, Symmetric, AsymmetricX509Cert. [Usage ]: A string that describes the purpose for which the key can be used; for example, Verify. -OPTIONALCLAIMS : optionalClaims +OPTIONALCLAIMS ``: optionalClaims [(Any) ]: This indicates any property can be added to this object. [AccessToken ]: The optional claims returned in the JWT access token. [AdditionalProperties ]: Additional properties of the claim. @@ -3064,7 +3064,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -PARENTALCONTROLSETTINGS : parentalControlSettings +PARENTALCONTROLSETTINGS ``: parentalControlSettings [(Any) ]: This indicates any property can be added to this object. [CountriesBlockedForMinors ]: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @@ -3093,13 +3093,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -PUBLICCLIENT : publicClientApplication +PUBLICCLIENT ``: publicClientApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. For iOS and macOS apps, specify the value following the syntax msauth.{BUNDLEID}://auth, replacing '{BUNDLEID}'. For example, if the bundle ID is com.microsoft.identitysample.MSALiOS, the URI is msauth.com.microsoft.identitysample.MSALiOS://auth. -REQUESTSIGNATUREVERIFICATION : requestSignatureVerification +REQUESTSIGNATUREVERIFICATION ``: requestSignatureVerification [(Any) ]: This indicates any property can be added to this object. [AllowedWeakAlgorithms ]: weakAlgorithms [IsSignedRequestRequired ]: Specifies whether signed authentication requests for this application should be required. @@ -3121,7 +3121,7 @@ The possible values are: Scope (for delegated permissions) or Role (for app role [ResourceAppId ]: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. -SERVICEPRINCIPALLOCKCONFIGURATION : servicePrincipalLockConfiguration +SERVICEPRINCIPALLOCKCONFIGURATION ``: servicePrincipalLockConfiguration [(Any) ]: This indicates any property can be added to this object. [AllProperties ]: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId. @@ -3132,11 +3132,11 @@ This locks OAuth service principals. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal. [TokenEncryptionKeyId ]: Locks the tokenEncryptionKeyId property for modification on the service principal. -SPA : spaApplication +SPA ``: spaApplication [(Any) ]: This indicates any property can be added to this object. [RedirectUris ]: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3425,13 +3425,13 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. [VerifiedPublisherId ]: The ID of the verified publisher from the app publisher's Partner Center account. -WEB : webApplication +WEB ``: webApplication [(Any) ]: This indicates any property can be added to this object. [HomePageUrl ]: Home page or landing page of the application. [ImplicitGrantSettings ]: implicitGrantSettings @@ -3449,3 +3449,25 @@ WEB : webApplication - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename) - [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 fabae035dc0a1..1550de05fb174 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 @@ -698,7 +698,7 @@ 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 : extensionProperty +BODYPARAMETER ``: extensionProperty [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -724,7 +724,7 @@ Supports $filter (eq). Not nullable. UserGroupAdministrativeUnitApplicationDeviceOrganization -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -755,3 +755,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty) + + + + + + + + + + + + + + + + + + + + + + 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 367912810f585..639661798b132 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 @@ -661,7 +661,7 @@ 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 : federatedIdentityCredential +BODYPARAMETER ``: federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -692,7 +692,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -724,3 +724,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 c96271dedc4fb..3307182a8b698 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 @@ -653,7 +653,7 @@ 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 : federatedIdentityCredential +BODYPARAMETER ``: federatedIdentityCredential [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -684,7 +684,7 @@ The combination of issuer and subject must be unique within the app. It has a limit of 600 characters. Supports $filter (eq). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -716,3 +716,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname) - [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 fe11bad3fcd54..42bdbf4fc7e7c 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 @@ -664,7 +664,7 @@ 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 : synchronizationJob +BODYPARAMETER ``: synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -891,7 +891,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -918,7 +918,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE : synchronizationSchedule +SCHEDULE ``: synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -928,7 +928,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1066,7 +1066,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS : synchronizationStatus +STATUS ``: synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1143,3 +1143,25 @@ Some settings are inherited from the template. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob) + + + + + + + + + + + + + + + + + + + + + + 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 6ef31b4c28fa2..7740e0220094f 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 @@ -489,7 +489,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -520,3 +520,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 4525defcadbcf..fdaf4dbd3f93b 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 @@ -578,7 +578,7 @@ 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 : synchronizationSchema +BODYPARAMETER ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -768,7 +768,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -883,3 +883,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema) + + + + + + + + + + + + + + + + + + + + + + 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 dd7d61963bfcb..7597fb5ce7954 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 @@ -690,7 +690,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -743,7 +743,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -814,3 +814,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 ab300c7cfd491..9767d031c037d 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 @@ -689,7 +689,7 @@ 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 : synchronizationTemplate +BODYPARAMETER ``: synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -841,7 +841,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -873,7 +873,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1016,3 +1016,25 @@ Must match one of the directory definitions in synchronizationSchema. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 421b05ed75f4e..04b7b549cf1d8 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 @@ -578,7 +578,7 @@ 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 : synchronizationSchema +BODYPARAMETER ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -768,7 +768,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -883,3 +883,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 cf68c3a3c29c5..0adbb4d1243fd 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 @@ -691,7 +691,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -744,7 +744,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -815,3 +815,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 3f1c41dbce260..87a786d6f0ec4 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 @@ -727,7 +727,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -757,7 +757,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -788,3 +788,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 add91c7f9e8ac..80501530c79c0 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 @@ -2263,12 +2263,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER : servicePrincipal +BODYPARAMETER ``: servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2406,8 +2406,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2608,8 +2608,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -3083,7 +3083,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -3095,7 +3095,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3201,8 +3201,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -3242,7 +3242,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3266,11 +3266,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3565,7 +3565,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3576,3 +3576,25 @@ VERIFIEDPUBLISHER : verifiedPublisher - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal) - [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 a53cd926c4e76..bae3d272b6b7f 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 @@ -728,7 +728,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -758,7 +758,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -789,3 +789,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto) + + + + + + + + + + + + + + + + + + + + + + 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 2732a6654baf5..00219da52aeaa 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 @@ -728,7 +728,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -758,7 +758,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -789,3 +789,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment) + + + + + + + + + + + + + + + + + + + + + + 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 8cf6afe75ad90..411ba7d50c100 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 @@ -2273,12 +2273,12 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. -BODYPARAMETER : servicePrincipal +BODYPARAMETER ``: servicePrincipal [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2416,8 +2416,8 @@ Must not be included in any POST or PATCH requests. Read-only. [Value ]: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [ApplicationTemplateId ]: Unique identifier of the applicationTemplate. @@ -2618,8 +2618,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. [OwnedObjects ]: Directory objects that this service principal owns. @@ -3093,7 +3093,7 @@ Always null when the object hasn't been deleted. [Id ]: The unique identifier for an entity. Read-only. -INFO : informationalUrl +INFO ``: informationalUrl [(Any) ]: This indicates any property can be added to this object. [LogoUrl ]: CDN URL to the application's logo, Read-only. [MarketingUrl ]: Link to the application's marketing page. @@ -3105,7 +3105,7 @@ For example, https://www.contoso.com/app/support [TermsOfServiceUrl ]: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -3211,8 +3211,8 @@ This text appears in consent experiences where the user is consenting only on be This text appears in consent experiences where the user is consenting only on behalf of themselves. [Value ]: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. -Allowed characters are : ! # $ % & ' ( ) * + , - . -/ : ; = ? @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. +Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ \[ \] ^ + _ { } ~, and characters in the ranges + @ [ ] ^ + _ { } ~, and characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, aren't allowed. May not begin with .. @@ -3252,7 +3252,7 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. -REMOTEDESKTOPSECURITYCONFIGURATION : remoteDesktopSecurityConfiguration +REMOTEDESKTOPSECURITYCONFIGURATION ``: remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3276,11 +3276,11 @@ Read-only. [IsEnabled ]: Indicates whether the permission is enabled. [Value ]: The value of the permission. -SAMLSINGLESIGNONSETTINGS : samlSingleSignOnSettings +SAMLSINGLESIGNONSETTINGS ``: samlSingleSignOnSettings [(Any) ]: This indicates any property can be added to this object. [RelayState ]: The relative URI the service provider would redirect to after completion of the single sign-on flow. -SYNCHRONIZATION : synchronization +SYNCHRONIZATION ``: synchronization [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -3575,7 +3575,7 @@ Read-only. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. -VERIFIEDPUBLISHER : verifiedPublisher +VERIFIEDPUBLISHER ``: verifiedPublisher [(Any) ]: This indicates any property can be added to this object. [AddedDateTime ]: The timestamp when the verified publisher was first added or most recently updated. [DisplayName ]: The verified publisher name from the app publisher's Partner Center account. @@ -3586,3 +3586,25 @@ VERIFIEDPUBLISHER : verifiedPublisher - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid) - [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 58746dbf4a55a..8334ee4fbc2ee 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 @@ -578,7 +578,7 @@ 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 : delegatedPermissionClassification +BODYPARAMETER ``: delegatedPermissionClassification [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -589,7 +589,7 @@ Doesn't support $filter. [PermissionName ]: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Doesn't support $filter. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -620,3 +620,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification) + + + + + + + + + + + + + + + + + + + + + + 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 4ab38cf6d70e3..f8389671c7221 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 @@ -655,7 +655,7 @@ 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 : endpoint +BODYPARAMETER ``: endpoint [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -667,7 +667,7 @@ Read-only. [ProviderResourceId ]: [Uri ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -698,3 +698,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint) + + + + + + + + + + + + + + + + + + + + + + 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 b05c653279063..10d7cef12ddd3 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 @@ -562,7 +562,7 @@ Supports $expand. Read-only. [DisplayName ]: The display name of the approved client application. -BODYPARAMETER : remoteDesktopSecurityConfiguration +BODYPARAMETER ``: remoteDesktopSecurityConfiguration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -577,7 +577,7 @@ Read-only. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -614,3 +614,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration) - [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 index 931b9a754fd91..ec5e8e5928bd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -523,13 +523,13 @@ 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 +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 +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -561,3 +561,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) - [](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 c2cfa6953eb24..42960ae1638f4 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 @@ -525,13 +525,13 @@ 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 : targetDeviceGroup +BODYPARAMETER ``: targetDeviceGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DisplayName ]: Display name for the target device group. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -563,3 +563,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) - [](https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 499b2e9410f2f..2e649ac52975c 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 @@ -664,7 +664,7 @@ 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 : synchronizationJob +BODYPARAMETER ``: synchronizationJob [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -891,7 +891,7 @@ Some settings are inherited from the template. [Value ]: Value for this key-value pair [TemplateId ]: Identifier of the synchronization template this job is based on. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -918,7 +918,7 @@ INPUTOBJECT : Identity Parameter [UniqueName ]: Alternate key of application [UserId ]: The unique identifier of user -SCHEDULE : synchronizationSchedule +SCHEDULE ``: synchronizationSchedule [(Any) ]: This indicates any property can be added to this object. [Expiration ]: Date and time when this job expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. @@ -928,7 +928,7 @@ The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute. [State ]: synchronizationScheduleState -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1066,7 +1066,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -STATUS : synchronizationStatus +STATUS ``: synchronizationStatus [(Any) ]: This indicates any property can be added to this object. [Code ]: synchronizationStatusCode [CountSuccessiveCompleteFailures ]: Number of consecutive times this job failed. @@ -1143,3 +1143,25 @@ Some settings are inherited from the template. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob) + + + + + + + + + + + + + + + + + + + + + + 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 85a7d5eda259c..64c84e6e5a7cf 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 @@ -488,7 +488,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -519,3 +519,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload) + + + + + + + + + + + + + + + + + + + + + + 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 6a7f92bcb7387..91d7d03b165c1 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 @@ -583,7 +583,7 @@ 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 : synchronizationSchema +BODYPARAMETER ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -773,7 +773,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -889,3 +889,25 @@ Must match one of the directory definitions in synchronizationSchema. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema) - [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 5b291f563eabb..0e9e1751ac849 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 @@ -689,7 +689,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -742,7 +742,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -813,3 +813,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 5d58dde49d2d3..350ae402e5d3f 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 @@ -689,7 +689,7 @@ 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 : synchronizationTemplate +BODYPARAMETER ``: synchronizationTemplate [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -841,7 +841,7 @@ Must match one of the directory definitions in synchronizationSchema. Must match one of the directory definitions in synchronizationSchema. [Version ]: The version of the schema, updated automatically with every schema change. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -873,7 +873,7 @@ Unless mentioned explicitly, metadata values should not be changed. [Key ]: synchronizationMetadata [Value ]: Value of the metadata property. -SCHEMA : synchronizationSchema +SCHEMA ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1015,3 +1015,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate) + + + + + + + + + + + + + + + + + + + + + + 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 78a2aec27caa3..ea3689e793d74 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 @@ -577,7 +577,7 @@ 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 : synchronizationSchema +BODYPARAMETER ``: synchronizationSchema [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -767,7 +767,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -882,3 +882,25 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema) + + + + + + + + + + + + + + + + + + + + + + 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 bbfd78e33e428..70c6ea7517770 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 @@ -690,7 +690,7 @@ 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 : directoryDefinition +BODYPARAMETER ``: directoryDefinition [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -743,7 +743,7 @@ Not nullable. [Version ]: Read only value that indicates version discovered. null if discovery hasn't yet occurred. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -814,3 +814,25 @@ Not nullable. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory) + + + + + + + + + + + + + + + + + + + + + + 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 c3c51b88cfc4f..d2c012559c48e 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 @@ -727,7 +727,7 @@ 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 : appRoleAssignment +BODYPARAMETER ``: appRoleAssignment [(Any) ]: This indicates any property can be added to this object. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -757,7 +757,7 @@ Maximum length is 256 characters. Required on create. Supports $filter (eq only). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppId ]: Alternate key of application [AppManagementPolicyId ]: The unique identifier of appManagementPolicy [AppRoleAssignmentId ]: The unique identifier of appRoleAssignment @@ -788,3 +788,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment) + + + + + + + + + + + + + + + + + + + + + + From 54ce7733be53101a342d9f9e6d961ff0d85a7111 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:18 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Microsoft.Graph.Applications/Add-MgApplicationKey.md | 8 ++++++++ .../Add-MgApplicationPassword.md | 8 ++++++++ .../Add-MgServicePrincipalKey.md | 8 ++++++++ .../Add-MgServicePrincipalPassword.md | 8 ++++++++ .../Add-MgServicePrincipalTokenSigningCertificate.md | 8 ++++++++ .../Confirm-MgServicePrincipalMemberGroup.md | 8 ++++++++ .../Confirm-MgServicePrincipalMemberObject.md | 8 ++++++++ ...MgServicePrincipalSynchronizationJobSchemaDirectory.md | 8 ++++++++ .../Microsoft.Graph.Applications/Get-MgApplication.md | 8 ++++++++ .../Get-MgApplicationByAppId.md | 8 ++++++++ .../Get-MgApplicationByUniqueName.md | 8 ++++++++ .../Get-MgApplicationCount.md | 8 ++++++++ .../Get-MgApplicationDelta.md | 8 ++++++++ .../Get-MgApplicationExtensionProperty.md | 8 ++++++++ .../Get-MgApplicationExtensionPropertyCount.md | 8 ++++++++ .../Get-MgApplicationFederatedIdentityCredential.md | 8 ++++++++ .../Get-MgApplicationFederatedIdentityCredentialByName.md | 8 ++++++++ .../Get-MgApplicationFederatedIdentityCredentialCount.md | 8 ++++++++ .../Get-MgApplicationOwner.md | 8 ++++++++ .../Get-MgApplicationOwnerByRef.md | 8 ++++++++ .../Get-MgApplicationOwnerCount.md | 8 ++++++++ .../Get-MgApplicationSynchronizationAccessToken.md | 8 ++++++++ .../Get-MgApplicationSynchronizationTemplate.md | 8 ++++++++ .../Get-MgApplicationSynchronizationTemplateCount.md | 8 ++++++++ .../Get-MgApplicationSynchronizationTemplateSchema.md | 8 ++++++++ .../Get-MgApplicationTokenIssuancePolicy.md | 8 ++++++++ .../Get-MgApplicationTokenIssuancePolicyByRef.md | 8 ++++++++ .../Get-MgApplicationTokenIssuancePolicyCount.md | 8 ++++++++ .../Get-MgApplicationTokenLifetimePolicy.md | 8 ++++++++ .../Get-MgApplicationTokenLifetimePolicyByRef.md | 8 ++++++++ .../Get-MgApplicationTokenLifetimePolicyCount.md | 8 ++++++++ .../Get-MgGroupAppRoleAssignmentCount.md | 8 ++++++++ .../Get-MgServicePrincipal.md | 8 ++++++++ .../Get-MgServicePrincipalAppRoleAssignedToCount.md | 8 ++++++++ .../Get-MgServicePrincipalAppRoleAssignmentCount.md | 8 ++++++++ .../Get-MgServicePrincipalByAppId.md | 8 ++++++++ .../Get-MgServicePrincipalClaimMappingPolicy.md | 8 ++++++++ .../Get-MgServicePrincipalClaimMappingPolicyByRef.md | 8 ++++++++ .../Get-MgServicePrincipalClaimMappingPolicyCount.md | 8 ++++++++ .../Get-MgServicePrincipalCount.md | 8 ++++++++ .../Get-MgServicePrincipalCreatedObjectCount.md | 8 ++++++++ ...vicePrincipalDelegatedPermissionClassificationCount.md | 8 ++++++++ .../Get-MgServicePrincipalDelta.md | 8 ++++++++ .../Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md | 8 ++++++++ ...Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md | 8 ++++++++ ...Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md | 8 ++++++++ .../Get-MgServicePrincipalMemberGroup.md | 8 ++++++++ .../Get-MgServicePrincipalMemberObject.md | 8 ++++++++ .../Get-MgServicePrincipalMemberOfCount.md | 8 ++++++++ .../Get-MgServicePrincipalOauth2PermissionGrantCount.md | 8 ++++++++ .../Get-MgServicePrincipalOwnedObjectCount.md | 8 ++++++++ .../Get-MgServicePrincipalOwner.md | 8 ++++++++ .../Get-MgServicePrincipalOwnerByRef.md | 8 ++++++++ .../Get-MgServicePrincipalOwnerCount.md | 8 ++++++++ ...gServicePrincipalRemoteDesktopSecurityConfiguration.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationApprovedClientApp.md | 8 ++++++++ ...eDesktopSecurityConfigurationApprovedClientAppCount.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 8 ++++++++ ...eDesktopSecurityConfigurationTargetDeviceGroupCount.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationAccessToken.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationJobCount.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationJobSchema.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationTemplate.md | 8 ++++++++ .../Get-MgServicePrincipalSynchronizationTemplateCount.md | 8 ++++++++ ...Get-MgServicePrincipalSynchronizationTemplateSchema.md | 8 ++++++++ .../Get-MgServicePrincipalTokenLifetimePolicy.md | 8 ++++++++ .../Get-MgServicePrincipalTokenLifetimePolicyByRef.md | 8 ++++++++ .../Get-MgServicePrincipalTokenLifetimePolicyCount.md | 8 ++++++++ .../Get-MgServicePrincipalTransitiveMemberOfCount.md | 8 ++++++++ .../Get-MgUserAppRoleAssignmentCount.md | 8 ++++++++ ...terApplicationSynchronizationTemplateSchemaOperator.md | 8 ++++++++ ...terServicePrincipalSynchronizationJobSchemaOperator.md | 8 ++++++++ ...rvicePrincipalSynchronizationTemplateSchemaOperator.md | 8 ++++++++ ...-MgFunctionApplicationSynchronizationTemplateSchema.md | 8 ++++++++ ...-MgFunctionServicePrincipalSynchronizationJobSchema.md | 8 ++++++++ ...nctionServicePrincipalSynchronizationTemplateSchema.md | 8 ++++++++ .../Invoke-MgInstantiateApplicationTemplate.md | 8 ++++++++ ...eServicePrincipalSynchronizationJobSchemaExpression.md | 8 ++++++++ ...icePrincipalSynchronizationTemplateSchemaExpression.md | 8 ++++++++ .../Microsoft.Graph.Applications/New-MgApplication.md | 8 ++++++++ .../New-MgApplicationAppManagementPolicyByRef.md | 8 ++++++++ .../New-MgApplicationExtensionProperty.md | 8 ++++++++ .../New-MgApplicationFederatedIdentityCredential.md | 8 ++++++++ .../New-MgApplicationOwnerByRef.md | 8 ++++++++ .../New-MgApplicationTokenIssuancePolicyByRef.md | 8 ++++++++ .../New-MgApplicationTokenLifetimePolicyByRef.md | 8 ++++++++ .../New-MgGroupAppRoleAssignment.md | 8 ++++++++ .../New-MgServicePrincipal.md | 8 ++++++++ .../New-MgServicePrincipalAppRoleAssignedTo.md | 8 ++++++++ .../New-MgServicePrincipalAppRoleAssignment.md | 8 ++++++++ .../New-MgServicePrincipalClaimMappingPolicyByRef.md | 8 ++++++++ ...MgServicePrincipalDelegatedPermissionClassification.md | 8 ++++++++ ...New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md | 8 ++++++++ .../New-MgServicePrincipalOwnerByRef.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationApprovedClientApp.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 8 ++++++++ .../New-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ .../New-MgServicePrincipalSynchronizationJobOnDemand.md | 8 ++++++++ .../New-MgServicePrincipalTokenLifetimePolicyByRef.md | 8 ++++++++ .../New-MgUserAppRoleAssignment.md | 8 ++++++++ .../Microsoft.Graph.Applications/Remove-MgApplication.md | 8 ++++++++ .../Remove-MgApplicationExtensionProperty.md | 8 ++++++++ .../Remove-MgApplicationFederatedIdentityCredential.md | 8 ++++++++ .../Remove-MgApplicationKey.md | 8 ++++++++ .../Remove-MgApplicationOwnerDirectoryObjectByRef.md | 8 ++++++++ .../Remove-MgApplicationPassword.md | 8 ++++++++ .../Remove-MgApplicationSynchronizationTemplateSchema.md | 8 ++++++++ ...licationTokenIssuancePolicyTokenIssuancePolicyByRef.md | 8 ++++++++ ...licationTokenLifetimePolicyTokenLifetimePolicyByRef.md | 8 ++++++++ .../Remove-MgGroupAppRoleAssignment.md | 8 ++++++++ .../Remove-MgServicePrincipal.md | 8 ++++++++ .../Remove-MgServicePrincipalAppRoleAssignedTo.md | 8 ++++++++ .../Remove-MgServicePrincipalAppRoleAssignment.md | 8 ++++++++ ...ePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md | 8 ++++++++ ...MgServicePrincipalDelegatedPermissionClassification.md | 8 ++++++++ ...meRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md | 8 ++++++++ .../Remove-MgServicePrincipalKey.md | 8 ++++++++ .../Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md | 8 ++++++++ .../Remove-MgServicePrincipalPassword.md | 8 ++++++++ ...gServicePrincipalRemoteDesktopSecurityConfiguration.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationApprovedClientApp.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 8 ++++++++ .../Remove-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ .../Remove-MgServicePrincipalSynchronizationJobSchema.md | 8 ++++++++ ...rincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md | 8 ++++++++ .../Remove-MgUserAppRoleAssignment.md | 8 ++++++++ .../Restart-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ .../Microsoft.Graph.Applications/Set-MgApplicationLogo.md | 8 ++++++++ .../Set-MgServicePrincipalSynchronizationSecret.md | 8 ++++++++ .../Start-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ .../Suspend-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ ...Test-MgServicePrincipalSynchronizationJobCredential.md | 8 ++++++++ .../Microsoft.Graph.Applications/Update-MgApplication.md | 8 ++++++++ .../Update-MgApplicationFederatedIdentityCredential.md | 8 ++++++++ .../Update-MgApplicationSynchronizationTemplate.md | 8 ++++++++ .../Update-MgServicePrincipal.md | 8 ++++++++ ...gServicePrincipalRemoteDesktopSecurityConfiguration.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationApprovedClientApp.md | 8 ++++++++ ...RemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 8 ++++++++ .../Update-MgServicePrincipalSynchronizationJob.md | 8 ++++++++ 141 files changed, 1128 insertions(+) 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 58f281b948049..babbfb3a71b32 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 @@ -76,6 +76,14 @@ As part of the request validation for this method, a proof of possession of an e Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 da6cea12130eb..61f58e581dad8 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Adds a strong password or secret to an application. You can also add passwords while creating the application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 03cb0f1fca383..d146ede63923c 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 @@ -76,6 +76,14 @@ As part of the request validation for this method, a proof of possession of an e ServicePrincipals that don't have any existing valid certificates (i.e.: no certificates have been added yet, or all certificates have expired), won't be able to use this service action. Update servicePrincipal can be used to perform an update instead. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 ab231d5ab641c..a0812a60c8c69 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 @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Add a strong password or secret to a servicePrincipal object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 fa798ffcc7e75..213581cf531cd 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 @@ -80,6 +80,14 @@ When set during creation through the displayName property, the subject of the ce The startDateTime is set to the same time the certificate is created using the action. The endDateTime can be up to three years after the certificate is created. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 2ac3b19b61d9e..a91d8ed6154a8 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 @@ -74,6 +74,14 @@ You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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.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, | + ## EXAMPLES ### EXAMPLE 1 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 26e2ab5b8cb69..c65639fd1e6c4 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 @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Invoke action checkMemberObjects +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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.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, | + ## EXAMPLES ### EXAMPLE 1 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 df2220dbcc235..d73ea05c36547 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 71957537dda4c..3125c53e73366 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentityBlueprint.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 a3ba0703dc5b9..c73318e0679b8 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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 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 9b6545fce407a..9e4b24a3f51e0 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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 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 d80cad897b390..b99bfdaf294a2 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 @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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 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 b865b58ecb9a9..65e71a26b2eb5 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 0aa2132c1618e..315324d4cff9b 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 @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Read a directory extension definition represented by an extensionProperty object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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.All, Application.ReadWrite.OwnedBy, | + ## EXAMPLES ### EXAMPLE 1 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 1ab041065a300..8eb6f41dda44c 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 13239ef5abc6e..2c9740678bfa6 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a federatedIdentityCredential object assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 51601562a2397..7ef9a77fe5029 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a federatedIdentityCredential object assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | + ## EXAMPLES ### EXAMPLE 1 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 bba86ab7e3bf8..7f57931c2ee78 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | + ## EXAMPLES ### EXAMPLE 1 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 12241e4d71d3e..cc4c9177d239d 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, Retrieve a list of owners for an application that are directoryObject types. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 428174a3efc95..a44cf312800bf 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, Retrieve a list of owners for an application that are directoryObject types. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 c7aa11e494766..d5fdc424c3097 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 af19cdbab17d7..89ccafa69f113 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 f4d0cfd6e5d80..20b023e2ef353 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Preconfigured synchronization settings for a particular application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 df83297839b09..be23fb91f2136 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 3a34ae5ba84b2..7697fdc64b491 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Default synchronization schema for the jobs based on this template. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 a15cd660d87ca..0fa8178bbd7c5 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the tokenIssuancePolicy objects that are assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 faf0a6b831249..903427451a3d8 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the tokenIssuancePolicy objects that are assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 8a07d06e32424..88442950b5714 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 99ae610875d4a..e74f8ea6d3f40 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 fcc7526f2fdd0..264a0fd196021 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 08b92f93f782c..463b46cfb03e6 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 a97349a172fea..36e4b35f6d756 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 4de867f918a84..d4d8695e2cf15 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 eb4b33a2293ed..acf434580cd6d 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 8c24be4217eb1..a486613fc5608 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 c62c31a060f1f..5ed2bd0663b63 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 ce4dc678bc56f..2308d25aabe8f 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the claimsMappingPolicy objects that are assigned to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 7c945b8c3d494..58a74bbb0528f 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the claimsMappingPolicy objects that are assigned to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 d23d6f1830935..c3fd7bf069c1e 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 2edff97c4290a..707232d500e2d 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 @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 9e4ea4a829965..52d5a323db38c 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 f23394eede4e6..729c4dee9d522 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, Directory.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 9ada93ede02f1..32c20ad6d2ed0 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 b9e97dd54b03b..7e5feae27d05b 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 8a7382c59b01b..364d61294aeac 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 @@ -37,6 +37,14 @@ This cmdlet has the following aliases, List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 6ff609bd1d651..ee7b380b02046 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 ec728a8195d47..924d8ddb5ee38 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 @@ -73,6 +73,14 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 1cea4a42aedf1..69a378bc1ebd7 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 @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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.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, | + ## EXAMPLES ### EXAMPLE 1 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 64e5bdb316074..31e2f9a37937e 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 11c18516198e6..6c17c53970860 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Directory.Read.All, DelegatedPermissionGrant.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Directory.Read.All, DelegatedPermissionGrant.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 0b340f1e77865..1feccc3f89de7 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 265c3678a56d4..4ac2a7f5fc19b 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 @@ -41,6 +41,14 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 77a9feca62973..477c6c254cb7f 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 @@ -41,6 +41,14 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 3f6f7f2350328..ee253059eeaea 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 344bc66c610c5..410f3268fc5c2 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 @@ -50,6 +50,14 @@ Read the properties and relationships of a remoteDesktopSecurityConfiguration ob Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. +**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 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 index 77a87bf2b3195..5f9516d18e6ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -58,6 +58,14 @@ This cmdlet has the following aliases, 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 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 index 68af557cff9fe..d649f3671c4b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, 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, | + ## EXAMPLES ### EXAMPLE 1 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 d1abc1e7b9d6b..5d21eb8bc0f45 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 @@ -58,6 +58,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the 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 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 39a71dc06cb1c..53667725941ea 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, 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.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 024e7d7585e26..434a2689d5835 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 df11f411c53c3..d03ca6c8b5504 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Retrieve the existing synchronization job and its properties. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 e7adc1f5f875c..55f67eba2b85b 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 6e5c6b7d62465..a7ef42b099857 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Retrieve the schema for a given synchronization job or template. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 1743d49651b28..a1d1fc3464b0e 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 @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Preconfigured synchronization settings for a particular application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 bc8d0eb0609f5..e97b4f587cee6 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 1dd729413c9f7..afc0e6647bd31 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Default synchronization schema for the jobs based on this template. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.Read.All, Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 91a3964bc5aa7..465614d00dae0 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 5a3fe618979e2..406fef7d9e742 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 @@ -39,6 +39,14 @@ This cmdlet has the following aliases, List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 b5253ae5af8c9..5a8af4bec1f27 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 fd1c58ccefc9f..61fa082cab99f 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 49ab72ab3640c..311c06533585a 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, Directory.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 ade03f56afdc3..eab0660d7d06a 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 a7523a3f07b67..4f3c721bbea33 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 6c543c98ab9fa..ac10e06f42269 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 eade2660cd443..e7cdb34c39c3a 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 5e203779cad45..1cd6e05af4131 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 5db5a9eadaf87..b6f634fda0f6b 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 fc6181afb20c4..4a1e15e2888d1 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Add an instance of an application from the Microsoft Entra application gallery into your directory. For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 fcf08913fd19e..833c743dcd785 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 @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 9bc63d9008c5c..5503864931848 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 @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 b657744563fa3..74c14f5987fc9 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 @@ -75,6 +75,14 @@ This cmdlet has the following aliases, Create a new application object. This API can also create an agentIdentityBlueprint object when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprint.Create, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.Create, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 00149a92dbe35..46059d76475a5 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 @@ -69,6 +69,14 @@ Assign an appManagementPolicy policy object to an application or service princip The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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.Read.ApplicationConfiguration, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 c956b98670cb3..b01f9e003c602 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 @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Create a new directory extension definition, represented by an extensionProperty object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 40be2c370b659..b3bd11e4aec17 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 @@ -72,6 +72,14 @@ Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 d0a3b5627fa73..23d2ca5991da0 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 @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Add an owner to an application. Application owners can be individual users, the associated service principal, or another service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 94bf8844c20eb..00d7c956a165d 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 @@ -65,6 +65,14 @@ This cmdlet has the following aliases, Assign a tokenIssuancePolicy to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 c2732798d7502..8a0d8b394cb40 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 @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 4626da68d9150..aa817b7f261b2 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 @@ -75,6 +75,14 @@ All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 9c929e27c6de0..15c14d5b9c6af 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 @@ -77,6 +77,14 @@ This cmdlet has the following aliases, Create a new servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.Create.All, AgentIdentity.CreateAsManager, AgentIdentityBlueprintPrincipal.Create, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 946e1e6f07c17..8fbb87143ee76 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 @@ -76,6 +76,14 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 a66296c880027..75ec10089598c 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 @@ -76,6 +76,14 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | + ## EXAMPLES ### EXAMPLE 1 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 31e23fcc58164..dbe70e9479aa8 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 @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Assign a claimsMappingPolicy to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 af83b19cdcd10..7ce56d3e3c4d6 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Policy.ReadWrite.PermissionGrant, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Policy.ReadWrite.PermissionGrant, | + ## EXAMPLES ### EXAMPLE 1 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 a6d16b372f8a9..e1883cb337f57 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 @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Assign a homeRealmDiscoveryPolicy to a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 0c2e7924c3dc3..c2b76effdc3cf 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 @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 index 4886a335afed3..0788323c5c302 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, 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 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 1d8c95e95c7fd..c0161648734a2 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 @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguration object on the servicePrincipal. +**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 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 b6c95ed9920d1..caf66f002d650 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 @@ -76,6 +76,14 @@ Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 ef9addf136647..5be5d3c04d402 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 @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 5720073755826..c76b4e34b055c 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Assign a tokenLifetimePolicy to a servicePrincipal. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 163264c003eea..623d9c764fdd1 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 @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Grant an app role assignment to an agentUser. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 db4f4452d4bf2..53067421c872c 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 @@ -50,6 +50,14 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, AgentIdentityBlueprint.DeleteRestore.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.DeleteRestore.All, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 10060e3b450aa..f0fc9e86f4c01 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 9a1dc17d340fb..e26ce6738c9a6 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete a federatedIdentityCredential object from an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 34beb62e2ded5..89c6ca596fc91 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Remove a key credential from an agentIdentityBlueprint. This method along with addKey can be used to automate rolling its expiring keys. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 8cd1d71ba8a51..24edbf1f488a5 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Remove an owner from an application. As a recommended best practice, apps should have at least two owners. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 7d086c724d1b2..b3e486ffbd7e9 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 @@ -65,6 +65,14 @@ This cmdlet has the following aliases, Remove a password from an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 3b754ad4e6aaf..5e3eb72c1ba8e 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property schema for applications +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 9c47e29e5377f..160d1ebaefe89 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Remove a tokenIssuancePolicy from an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 f6e8250e2e6a5..d9332be2059b5 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy from an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 fd0550bc291f8..78317e5396daf 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Deletes an appRoleAssignment that a group has been granted. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 37a90bbc7507d..993c2a64793e7 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.DeleteRestore.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 b95d189985684..5cb779a20f9fd 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 8c2e8bee02f1f..55e77fc3a9cc7 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 @@ -49,6 +49,14 @@ Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 6e0d188605c7f..caea47e8b5161 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Remove a claimsMappingPolicy from a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 f3540c658a192..31d6083b76757 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Policy.ReadWrite.PermissionGrant, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Policy.ReadWrite.PermissionGrant, | + ## EXAMPLES ### EXAMPLE 1 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 109720232781f..f5e7a091afc7f 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Remove a homeRealmDiscoveryPolicy from a servicePrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 4f9df8d71c776..6512e6c8a800d 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 @@ -70,6 +70,14 @@ Remove a key credential from a servicePrincipal. This method along with addKey can be used by a servicePrincipal to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 7b98a32721c00..ce65c2ee63cbe 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 @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 818cec23a1560..99fe7393e5e8e 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 @@ -65,6 +65,14 @@ This cmdlet has the following aliases, Remove a password from a servicePrincipal object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 ab507f8ea877c..aede7ffde625a 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. +**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, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 index d6822ea5bed9a..afed18a802c06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, 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 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 e16b1827f1dfc..d256b4b6c5e5a 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 @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. +**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 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 232a06a9e888c..2fefe6d2085c7 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 @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 8855b5bc5aea6..8a4e45ec36001 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 @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property schema for servicePrincipals +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, CustomSecAttributeProvisioning.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 5aba51173c10c..c558aa706ceae 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy object from a service principal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.ReadWrite.ApplicationConfiguration, | + ## EXAMPLES ### EXAMPLE 1 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 2fc11d4db5698..d480f53cdfad2 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 @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete an appRoleAssignment that has been granted to a user. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | AppRoleAssignment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | AppRoleAssignment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 656c474eb738b..1da113089e84f 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 @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 d29d62a58f380..d9de19be81a51 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 @@ -46,6 +46,14 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 d8053bbe34367..9d6737211c75d 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 @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Provide credentials for establishing connectivity with the target system. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 83d4e1e1156c8..5377f32af0977 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 @@ -53,6 +53,14 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 09107e5665596..8b168499dffef 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 @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 cfec0efc71a2a..2ed422ffb5976 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 @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Validate that the credentials are valid in the tenant. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 2ad66d70959de..f7c5587846b3a 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 @@ -125,6 +125,14 @@ This cmdlet has the following aliases, Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentityBlueprint.AddRemoveCreds.All, AgentIdentityBlueprint.ReadWrite.All, AgentIdentityBlueprint.UpdateAuthProperties.All, AgentIdentityBlueprint.UpdateBranding.All, AgentIdentityBlueprintPrincipal.ReadWrite.All, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 639661798b132..fb3794230111e 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 @@ -72,6 +72,14 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, | +| Delegated (personal Microsoft account) | Application.ReadWrite.All, | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 9767d031c037d..96f24c5c407bc 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 @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update (override) the synchronization template associated with a given application. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 80501530c79c0..b9ff0d964c255 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 @@ -128,6 +128,14 @@ This cmdlet has the following aliases, Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| 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, AgentIdentity.EnableDisable.All, AgentIdentity.ReadWrite.All, AgentIdentityBlueprintPrincipal.EnableDisable.All, Application.ReadWrite.All, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 10d7cef12ddd3..46c45a2d8b9ca 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 @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. +**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, Directory.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 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 index ec5e8e5928bd7..db7e9519c8156 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -69,6 +69,14 @@ This cmdlet has the following aliases, 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 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 42960ae1638f4..5d461f632f2b2 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 @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. +**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 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 2e649ac52975c..a8057c5a00e21 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 @@ -73,6 +73,14 @@ This cmdlet has the following aliases, Update the navigation property jobs in servicePrincipals +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Synchronization.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Synchronization.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 From d325d3d7e48b47d855413a90a73e24db5c7cc3c6 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:25 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Microsoft.Graph.Applications/Add-MgApplicationKey.md | 3 +++ .../Microsoft.Graph.Applications/Add-MgApplicationPassword.md | 3 +++ .../Add-MgServicePrincipalTokenSigningCertificate.md | 3 +++ .../Clear-MgApplicationVerifiedPublisher.md | 3 +++ .../Confirm-MgApplicationMemberGroup.md | 3 +++ .../Confirm-MgApplicationMemberObject.md | 3 +++ .../Confirm-MgServicePrincipalMemberGroup.md | 3 +++ .../Confirm-MgServicePrincipalMemberObject.md | 3 +++ .../Find-MgApplicationSynchronizationJobSchemaDirectory.md | 3 +++ ...Find-MgApplicationSynchronizationTemplateSchemaDirectory.md | 3 +++ ...Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md | 3 +++ ...MgServicePrincipalSynchronizationTemplateSchemaDirectory.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplication.md | 3 +++ .../Get-MgApplicationAppManagementPolicy.md | 3 +++ .../Get-MgApplicationAppManagementPolicyByRef.md | 3 +++ .../Get-MgApplicationAppManagementPolicyCount.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationByAppId.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationById.md | 3 +++ .../Get-MgApplicationByUniqueName.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationCount.md | 3 +++ .../Get-MgApplicationCreatedOnBehalfOf.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationDelta.md | 3 +++ .../Get-MgApplicationExtensionProperty.md | 3 +++ .../Get-MgApplicationExtensionPropertyCount.md | 3 +++ .../Get-MgApplicationFederatedIdentityCredential.md | 3 +++ .../Get-MgApplicationFederatedIdentityCredentialByName.md | 3 +++ .../Get-MgApplicationFederatedIdentityCredentialCount.md | 3 +++ .../Get-MgApplicationHomeRealmDiscoveryPolicy.md | 3 +++ .../Get-MgApplicationHomeRealmDiscoveryPolicyCount.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationLogo.md | 3 +++ .../Get-MgApplicationMemberGroup.md | 3 +++ .../Get-MgApplicationMemberObject.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationOwner.md | 3 +++ .../Get-MgApplicationOwnerAsAppRoleAssignment.md | 3 +++ .../Get-MgApplicationOwnerAsEndpoint.md | 3 +++ .../Get-MgApplicationOwnerAsServicePrincipal.md | 3 +++ .../Get-MgApplicationOwnerAsUser.md | 3 +++ .../Get-MgApplicationOwnerByRef.md | 3 +++ .../Get-MgApplicationOwnerCount.md | 3 +++ .../Get-MgApplicationOwnerCountAsAppRoleAssignment.md | 3 +++ .../Get-MgApplicationOwnerCountAsEndpoint.md | 3 +++ .../Get-MgApplicationOwnerCountAsServicePrincipal.md | 3 +++ .../Get-MgApplicationOwnerCountAsUser.md | 3 +++ .../Get-MgApplicationSynchronization.md | 3 +++ .../Get-MgApplicationSynchronizationAccessToken.md | 3 +++ .../Get-MgApplicationSynchronizationJob.md | 3 +++ .../Get-MgApplicationSynchronizationJobBulkUpload.md | 3 +++ .../Get-MgApplicationSynchronizationJobBulkUploadContent.md | 3 +++ .../Get-MgApplicationSynchronizationJobCount.md | 3 +++ .../Get-MgApplicationSynchronizationJobSchema.md | 3 +++ .../Get-MgApplicationSynchronizationJobSchemaDirectory.md | 3 +++ .../Get-MgApplicationSynchronizationJobSchemaDirectoryCount.md | 3 +++ .../Get-MgApplicationSynchronizationSecretCount.md | 3 +++ .../Get-MgApplicationSynchronizationTemplate.md | 3 +++ .../Get-MgApplicationSynchronizationTemplateCount.md | 3 +++ .../Get-MgApplicationSynchronizationTemplateSchema.md | 3 +++ .../Get-MgApplicationSynchronizationTemplateSchemaDirectory.md | 3 +++ ...MgApplicationSynchronizationTemplateSchemaDirectoryCount.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgApplicationTemplate.md | 3 +++ .../Get-MgApplicationTemplateCount.md | 3 +++ .../Get-MgApplicationTokenIssuancePolicy.md | 3 +++ .../Get-MgApplicationTokenIssuancePolicyByRef.md | 3 +++ .../Get-MgApplicationTokenIssuancePolicyCount.md | 3 +++ .../Get-MgApplicationTokenLifetimePolicy.md | 3 +++ .../Get-MgApplicationTokenLifetimePolicyByRef.md | 3 +++ .../Get-MgApplicationTokenLifetimePolicyCount.md | 3 +++ .../Get-MgGroupAppRoleAssignment.md | 3 +++ .../Get-MgGroupAppRoleAssignmentCount.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalAppManagementPolicy.md | 3 +++ .../Get-MgServicePrincipalAppManagementPolicyCount.md | 3 +++ .../Get-MgServicePrincipalAppRoleAssignedTo.md | 3 +++ .../Get-MgServicePrincipalAppRoleAssignedToCount.md | 3 +++ .../Get-MgServicePrincipalAppRoleAssignment.md | 3 +++ .../Get-MgServicePrincipalAppRoleAssignmentCount.md | 3 +++ .../Get-MgServicePrincipalByAppId.md | 3 +++ .../Microsoft.Graph.Applications/Get-MgServicePrincipalById.md | 3 +++ .../Get-MgServicePrincipalClaimMappingPolicy.md | 3 +++ .../Get-MgServicePrincipalClaimMappingPolicyByRef.md | 3 +++ .../Get-MgServicePrincipalClaimMappingPolicyCount.md | 3 +++ .../Get-MgServicePrincipalCount.md | 3 +++ .../Get-MgServicePrincipalCreatedObject.md | 3 +++ .../Get-MgServicePrincipalCreatedObjectAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalCreatedObjectCount.md | 3 +++ ...t-MgServicePrincipalCreatedObjectCountAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalDelegatedPermissionClassification.md | 3 +++ ...MgServicePrincipalDelegatedPermissionClassificationCount.md | 3 +++ .../Get-MgServicePrincipalDelta.md | 3 +++ .../Get-MgServicePrincipalEndpoint.md | 3 +++ .../Get-MgServicePrincipalEndpointCount.md | 3 +++ .../Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md | 3 +++ .../Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md | 3 +++ .../Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount.md | 3 +++ .../Get-MgServicePrincipalMemberGroup.md | 3 +++ .../Get-MgServicePrincipalMemberObject.md | 3 +++ .../Get-MgServicePrincipalMemberOf.md | 3 +++ .../Get-MgServicePrincipalMemberOfAsAdministrativeUnit.md | 3 +++ .../Get-MgServicePrincipalMemberOfAsDirectoryRole.md | 3 +++ .../Get-MgServicePrincipalMemberOfAsGroup.md | 3 +++ .../Get-MgServicePrincipalMemberOfCount.md | 3 +++ .../Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit.md | 3 +++ .../Get-MgServicePrincipalMemberOfCountAsDirectoryRole.md | 3 +++ .../Get-MgServicePrincipalMemberOfCountAsGroup.md | 3 +++ .../Get-MgServicePrincipalOauth2PermissionGrant.md | 3 +++ .../Get-MgServicePrincipalOauth2PermissionGrantCount.md | 3 +++ .../Get-MgServicePrincipalOwnedObject.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectAsApplication.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectAsEndpoint.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectAsGroup.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectCount.md | 3 +++ ...et-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectCountAsApplication.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectCountAsEndpoint.md | 3 +++ .../Get-MgServicePrincipalOwnedObjectCountAsGroup.md | 3 +++ ...Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalOwner.md | 3 +++ .../Get-MgServicePrincipalOwnerAsAppRoleAssignment.md | 3 +++ .../Get-MgServicePrincipalOwnerAsEndpoint.md | 3 +++ .../Get-MgServicePrincipalOwnerAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalOwnerAsUser.md | 3 +++ .../Get-MgServicePrincipalOwnerByRef.md | 3 +++ .../Get-MgServicePrincipalOwnerCount.md | 3 +++ .../Get-MgServicePrincipalOwnerCountAsAppRoleAssignment.md | 3 +++ .../Get-MgServicePrincipalOwnerCountAsEndpoint.md | 3 +++ .../Get-MgServicePrincipalOwnerCountAsServicePrincipal.md | 3 +++ .../Get-MgServicePrincipalOwnerCountAsUser.md | 3 +++ ...Get-MgServicePrincipalRemoteDesktopSecurityConfiguration.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationApprovedClientApp.md | 3 +++ ...RemoteDesktopSecurityConfigurationApprovedClientAppCount.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 3 +++ ...RemoteDesktopSecurityConfigurationTargetDeviceGroupCount.md | 3 +++ .../Get-MgServicePrincipalSynchronization.md | 3 +++ .../Get-MgServicePrincipalSynchronizationAccessToken.md | 3 +++ .../Get-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Get-MgServicePrincipalSynchronizationJobBulkUpload.md | 3 +++ ...et-MgServicePrincipalSynchronizationJobBulkUploadContent.md | 3 +++ .../Get-MgServicePrincipalSynchronizationJobCount.md | 3 +++ .../Get-MgServicePrincipalSynchronizationJobSchema.md | 3 +++ .../Get-MgServicePrincipalSynchronizationJobSchemaDirectory.md | 3 +++ ...MgServicePrincipalSynchronizationJobSchemaDirectoryCount.md | 3 +++ .../Get-MgServicePrincipalSynchronizationSecretCount.md | 3 +++ .../Get-MgServicePrincipalSynchronizationTemplate.md | 3 +++ .../Get-MgServicePrincipalSynchronizationTemplateCount.md | 3 +++ .../Get-MgServicePrincipalSynchronizationTemplateSchema.md | 3 +++ ...MgServicePrincipalSynchronizationTemplateSchemaDirectory.md | 3 +++ ...vicePrincipalSynchronizationTemplateSchemaDirectoryCount.md | 3 +++ .../Get-MgServicePrincipalTokenIssuancePolicy.md | 3 +++ .../Get-MgServicePrincipalTokenIssuancePolicyByRef.md | 3 +++ .../Get-MgServicePrincipalTokenIssuancePolicyCount.md | 3 +++ .../Get-MgServicePrincipalTokenLifetimePolicy.md | 3 +++ .../Get-MgServicePrincipalTokenLifetimePolicyByRef.md | 3 +++ .../Get-MgServicePrincipalTokenLifetimePolicyCount.md | 3 +++ .../Get-MgServicePrincipalTransitiveMemberOf.md | 3 +++ ...MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit.md | 3 +++ .../Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole.md | 3 +++ .../Get-MgServicePrincipalTransitiveMemberOfAsGroup.md | 3 +++ .../Get-MgServicePrincipalTransitiveMemberOfCount.md | 3 +++ ...vicePrincipalTransitiveMemberOfCountAsAdministrativeUnit.md | 3 +++ ...MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole.md | 3 +++ .../Get-MgServicePrincipalTransitiveMemberOfCountAsGroup.md | 3 +++ .../Get-MgUserAppRoleAssignment.md | 3 +++ .../Get-MgUserAppRoleAssignmentCount.md | 3 +++ ...voke-MgFilterApplicationSynchronizationJobSchemaOperator.md | 3 +++ ...MgFilterApplicationSynchronizationTemplateSchemaOperator.md | 3 +++ ...MgFilterServicePrincipalSynchronizationJobSchemaOperator.md | 3 +++ ...terServicePrincipalSynchronizationTemplateSchemaOperator.md | 3 +++ .../Invoke-MgFunctionApplicationSynchronizationJobSchema.md | 3 +++ ...nvoke-MgFunctionApplicationSynchronizationTemplateSchema.md | 3 +++ ...nvoke-MgFunctionServicePrincipalSynchronizationJobSchema.md | 3 +++ ...-MgFunctionServicePrincipalSynchronizationTemplateSchema.md | 3 +++ .../Invoke-MgInstantiateApplicationTemplate.md | 3 +++ ...oke-MgParseApplicationSynchronizationJobSchemaExpression.md | 3 +++ ...gParseApplicationSynchronizationTemplateSchemaExpression.md | 3 +++ ...gParseServicePrincipalSynchronizationJobSchemaExpression.md | 3 +++ ...eServicePrincipalSynchronizationTemplateSchemaExpression.md | 3 +++ .../Microsoft.Graph.Applications/New-MgApplication.md | 3 +++ .../New-MgApplicationAppManagementPolicyByRef.md | 3 +++ .../New-MgApplicationExtensionProperty.md | 3 +++ .../New-MgApplicationFederatedIdentityCredential.md | 3 +++ .../New-MgApplicationOwnerByRef.md | 3 +++ .../New-MgApplicationSynchronizationJob.md | 3 +++ .../New-MgApplicationSynchronizationJobOnDemand.md | 3 +++ .../New-MgApplicationSynchronizationJobSchemaDirectory.md | 3 +++ .../New-MgApplicationSynchronizationTemplate.md | 3 +++ .../New-MgApplicationSynchronizationTemplateSchemaDirectory.md | 3 +++ .../New-MgApplicationTokenIssuancePolicyByRef.md | 3 +++ .../New-MgApplicationTokenLifetimePolicyByRef.md | 3 +++ .../New-MgGroupAppRoleAssignment.md | 3 +++ .../Microsoft.Graph.Applications/New-MgServicePrincipal.md | 3 +++ .../New-MgServicePrincipalAppRoleAssignedTo.md | 3 +++ .../New-MgServicePrincipalAppRoleAssignment.md | 3 +++ .../New-MgServicePrincipalClaimMappingPolicyByRef.md | 3 +++ .../New-MgServicePrincipalDelegatedPermissionClassification.md | 3 +++ .../New-MgServicePrincipalEndpoint.md | 3 +++ .../New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md | 3 +++ .../New-MgServicePrincipalOwnerByRef.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationApprovedClientApp.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 3 +++ .../New-MgServicePrincipalSynchronizationJob.md | 3 +++ .../New-MgServicePrincipalSynchronizationJobOnDemand.md | 3 +++ .../New-MgServicePrincipalSynchronizationJobSchemaDirectory.md | 3 +++ .../New-MgServicePrincipalSynchronizationTemplate.md | 3 +++ ...MgServicePrincipalSynchronizationTemplateSchemaDirectory.md | 3 +++ .../New-MgServicePrincipalTokenIssuancePolicyByRef.md | 3 +++ .../New-MgServicePrincipalTokenLifetimePolicyByRef.md | 3 +++ .../New-MgUserAppRoleAssignment.md | 3 +++ .../Microsoft.Graph.Applications/Remove-MgApplication.md | 3 +++ ...MgApplicationAppManagementPolicyAppManagementPolicyByRef.md | 3 +++ .../Remove-MgApplicationByAppId.md | 3 +++ .../Remove-MgApplicationByUniqueName.md | 3 +++ .../Remove-MgApplicationExtensionProperty.md | 3 +++ .../Remove-MgApplicationFederatedIdentityCredential.md | 3 +++ .../Remove-MgApplicationFederatedIdentityCredentialByName.md | 3 +++ .../Microsoft.Graph.Applications/Remove-MgApplicationKey.md | 3 +++ .../Microsoft.Graph.Applications/Remove-MgApplicationLogo.md | 3 +++ .../Remove-MgApplicationOwnerDirectoryObjectByRef.md | 3 +++ .../Remove-MgApplicationPassword.md | 3 +++ .../Remove-MgApplicationSynchronization.md | 3 +++ .../Remove-MgApplicationSynchronizationJob.md | 3 +++ .../Remove-MgApplicationSynchronizationJobBulkUpload.md | 3 +++ .../Remove-MgApplicationSynchronizationJobBulkUploadContent.md | 3 +++ .../Remove-MgApplicationSynchronizationJobSchema.md | 3 +++ .../Remove-MgApplicationSynchronizationJobSchemaDirectory.md | 3 +++ .../Remove-MgApplicationSynchronizationTemplate.md | 3 +++ .../Remove-MgApplicationSynchronizationTemplateSchema.md | 3 +++ ...move-MgApplicationSynchronizationTemplateSchemaDirectory.md | 3 +++ ...MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef.md | 3 +++ ...MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef.md | 3 +++ .../Remove-MgGroupAppRoleAssignment.md | 3 +++ .../Microsoft.Graph.Applications/Remove-MgServicePrincipal.md | 3 +++ .../Remove-MgServicePrincipalAppRoleAssignedTo.md | 3 +++ .../Remove-MgServicePrincipalAppRoleAssignment.md | 3 +++ .../Remove-MgServicePrincipalByAppId.md | 3 +++ ...ervicePrincipalClaimMappingPolicyClaimMappingPolicyByRef.md | 3 +++ ...move-MgServicePrincipalDelegatedPermissionClassification.md | 3 +++ .../Remove-MgServicePrincipalEndpoint.md | 3 +++ ...palHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef.md | 3 +++ .../Remove-MgServicePrincipalOwnerDirectoryObjectByRef.md | 3 +++ ...ove-MgServicePrincipalRemoteDesktopSecurityConfiguration.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationApprovedClientApp.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 3 +++ .../Remove-MgServicePrincipalSynchronization.md | 3 +++ .../Remove-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Remove-MgServicePrincipalSynchronizationJobBulkUpload.md | 3 +++ ...ve-MgServicePrincipalSynchronizationJobBulkUploadContent.md | 3 +++ .../Remove-MgServicePrincipalSynchronizationJobSchema.md | 3 +++ ...move-MgServicePrincipalSynchronizationJobSchemaDirectory.md | 3 +++ .../Remove-MgServicePrincipalSynchronizationTemplate.md | 3 +++ .../Remove-MgServicePrincipalSynchronizationTemplateSchema.md | 3 +++ ...MgServicePrincipalSynchronizationTemplateSchemaDirectory.md | 3 +++ .../Remove-MgServicePrincipalTokenIssuancePolicyByRef.md | 3 +++ ...vicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef.md | 3 +++ .../Remove-MgServicePrincipalTokenLifetimePolicyByRef.md | 3 +++ ...vicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef.md | 3 +++ .../Remove-MgUserAppRoleAssignment.md | 3 +++ .../Restart-MgApplicationSynchronizationJob.md | 3 +++ .../Restart-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Microsoft.Graph.Applications/Set-MgApplicationLogo.md | 3 +++ .../Set-MgApplicationSynchronization.md | 3 +++ .../Set-MgApplicationSynchronizationJobBulkUploadContent.md | 3 +++ .../Set-MgApplicationSynchronizationSecret.md | 3 +++ .../Set-MgApplicationVerifiedPublisher.md | 3 +++ .../Set-MgServicePrincipalSynchronization.md | 3 +++ ...et-MgServicePrincipalSynchronizationJobBulkUploadContent.md | 3 +++ .../Set-MgServicePrincipalSynchronizationSecret.md | 3 +++ .../Start-MgApplicationSynchronizationJob.md | 3 +++ .../Start-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Suspend-MgApplicationSynchronizationJob.md | 3 +++ .../Suspend-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Microsoft.Graph.Applications/Test-MgApplicationProperty.md | 3 +++ .../Test-MgApplicationSynchronizationJobCredential.md | 3 +++ .../Test-MgServicePrincipalProperty.md | 3 +++ .../Test-MgServicePrincipalSynchronizationJobCredential.md | 3 +++ .../Microsoft.Graph.Applications/Update-MgApplication.md | 3 +++ .../Update-MgApplicationByAppId.md | 3 +++ .../Update-MgApplicationByUniqueName.md | 3 +++ .../Update-MgApplicationExtensionProperty.md | 3 +++ .../Update-MgApplicationFederatedIdentityCredential.md | 3 +++ .../Update-MgApplicationFederatedIdentityCredentialByName.md | 3 +++ .../Update-MgApplicationSynchronizationJob.md | 3 +++ .../Update-MgApplicationSynchronizationJobBulkUpload.md | 3 +++ .../Update-MgApplicationSynchronizationJobSchema.md | 3 +++ .../Update-MgApplicationSynchronizationJobSchemaDirectory.md | 3 +++ .../Update-MgApplicationSynchronizationTemplate.md | 3 +++ .../Update-MgApplicationSynchronizationTemplateSchema.md | 3 +++ ...date-MgApplicationSynchronizationTemplateSchemaDirectory.md | 3 +++ .../Update-MgGroupAppRoleAssignment.md | 3 +++ .../Microsoft.Graph.Applications/Update-MgServicePrincipal.md | 3 +++ .../Update-MgServicePrincipalAppRoleAssignedTo.md | 3 +++ .../Update-MgServicePrincipalAppRoleAssignment.md | 3 +++ .../Update-MgServicePrincipalByAppId.md | 3 +++ ...date-MgServicePrincipalDelegatedPermissionClassification.md | 3 +++ .../Update-MgServicePrincipalEndpoint.md | 3 +++ ...ate-MgServicePrincipalRemoteDesktopSecurityConfiguration.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationApprovedClientApp.md | 3 +++ ...cipalRemoteDesktopSecurityConfigurationTargetDeviceGroup.md | 3 +++ .../Update-MgServicePrincipalSynchronizationJob.md | 3 +++ .../Update-MgServicePrincipalSynchronizationJobBulkUpload.md | 3 +++ .../Update-MgServicePrincipalSynchronizationJobSchema.md | 3 +++ ...date-MgServicePrincipalSynchronizationJobSchemaDirectory.md | 3 +++ .../Update-MgServicePrincipalSynchronizationTemplate.md | 3 +++ .../Update-MgServicePrincipalSynchronizationTemplateSchema.md | 3 +++ ...MgServicePrincipalSynchronizationTemplateSchemaDirectory.md | 3 +++ .../Update-MgUserAppRoleAssignment.md | 3 +++ 306 files changed, 918 insertions(+) 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 babbfb3a71b32..8722374494b5d 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 @@ -19,6 +19,9 @@ As part of the request validation for this method, a proof of possession of an e Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead. +> [!NOTE] +> To view the beta release of this cmdlet, view [Add-MgBetaApplicationKey](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaApplicationKey?view=graph-powershell-beta) + ## SYNTAX ### AddExpanded (Default) 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 61f58e581dad8..8c35f9ccc74ac 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 @@ -16,6 +16,9 @@ title: Add-MgApplicationPassword Adds a strong password or secret to an application. You can also add passwords while creating the application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Add-MgBetaApplicationPassword](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaApplicationPassword?view=graph-powershell-beta) + ## SYNTAX ### AddExpanded (Default) 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 213581cf531cd..b05f8f814eb49 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 @@ -22,6 +22,9 @@ When set during creation through the displayName property, the subject of the ce The startDateTime is set to the same time the certificate is created using the action. The endDateTime can be up to three years after the certificate is created. +> [!NOTE] +> To view the beta release of this cmdlet, view [Add-MgBetaServicePrincipalTokenSigningCertificate](/powershell/module/Microsoft.Graph.Beta.Applications/Add-MgBetaServicePrincipalTokenSigningCertificate?view=graph-powershell-beta) + ## SYNTAX ### AddExpanded (Default) 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 9336268f7ee0c..b3cf497fd3b86 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 @@ -16,6 +16,9 @@ title: Clear-MgApplicationVerifiedPublisher Unset the verifiedPublisher previously set on an agentIdentityBlueprint, removing all verified publisher properties. For more information, see Publisher verification. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaApplicationVerifiedPublisher](/powershell/module/Microsoft.Graph.Beta.Applications/Clear-MgBetaApplicationVerifiedPublisher?view=graph-powershell-beta) + ## SYNTAX ### Unset (Default) 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 d6961c41e689b..bf833c698b99a 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 @@ -19,6 +19,9 @@ You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. +> [!NOTE] +> To view the beta release of this cmdlet, view [Confirm-MgBetaApplicationMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaApplicationMemberGroup?view=graph-powershell-beta) + ## SYNTAX ### CheckExpanded (Default) 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 a38c3d8487016..3a02c908dc63a 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 @@ -15,6 +15,9 @@ title: Confirm-MgApplicationMemberObject Invoke action checkMemberObjects +> [!NOTE] +> To view the beta release of this cmdlet, view [Confirm-MgBetaApplicationMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaApplicationMemberObject?view=graph-powershell-beta) + ## SYNTAX ### CheckExpanded (Default) 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 a91d8ed6154a8..dd875ee15209a 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 @@ -19,6 +19,9 @@ You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. +> [!NOTE] +> To view the beta release of this cmdlet, view [Confirm-MgBetaServicePrincipalMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaServicePrincipalMemberGroup?view=graph-powershell-beta) + ## SYNTAX ### CheckExpanded (Default) 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 c65639fd1e6c4..8bdff898f2663 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 @@ -15,6 +15,9 @@ title: Confirm-MgServicePrincipalMemberObject Invoke action checkMemberObjects +> [!NOTE] +> To view the beta release of this cmdlet, view [Confirm-MgBetaServicePrincipalMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Confirm-MgBetaServicePrincipalMemberObject?view=graph-powershell-beta) + ## SYNTAX ### CheckExpanded (Default) 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 4ccd5f74da5ba..dad18f77d2ce9 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 @@ -15,6 +15,9 @@ title: Find-MgApplicationSynchronizationJobSchemaDirectory Discover the latest schema definition for provisioning to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Find-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Discover (Default) 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 a223e68ccb5e1..e62627de9adaf 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 @@ -15,6 +15,9 @@ title: Find-MgApplicationSynchronizationTemplateSchemaDirectory Discover the latest schema definition for provisioning to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Discover (Default) 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 d73ea05c36547..849db0aaf0058 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 @@ -15,6 +15,9 @@ title: Find-MgServicePrincipalSynchronizationJobSchemaDirectory Discover the latest schema definition for provisioning to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Discover (Default) 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 4415a89e23355..65bb685f14871 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 @@ -15,6 +15,9 @@ title: Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory Discover the latest schema definition for provisioning to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Discover (Default) 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 3125c53e73366..c3551281cc975 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 @@ -16,6 +16,9 @@ title: Get-MgApplication Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplication?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 06082186349b2..d0177c5cd27ef 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationAppManagementPolicy The appManagementPolicy applied to this application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 744e6fb859da7..d49123dcfdb27 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationAppManagementPolicyByRef The appManagementPolicy applied to this application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 676a897e58330..05fb20fa4a178 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationAppManagementPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationAppManagementPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationAppManagementPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 c73318e0679b8..9b2ea0d45fe4c 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationByAppId Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationByAppId?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 644f7dc64abac..00df1fcdb3c9e 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 @@ -17,6 +17,9 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationById](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationById?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 9e4b24a3f51e0..34dca74626b49 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationByUniqueName Get the properties and relationships of an application object. This API can be used to get agentIdentityBlueprint objects as well by their ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationByUniqueName?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 b99bfdaf294a2..452984e759dc9 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 0053c255178e1..d8e497ab60747 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationCreatedOnBehalfOf Supports $filter (/$count eq 0, /$count ne 0). Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationCreatedOnBehalfOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationCreatedOnBehalfOf?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 65e71a26b2eb5..3c7a6c5e6997d 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationDelta Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationDelta](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) 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 315324d4cff9b..a36101c6c26d7 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationExtensionProperty Read a directory extension definition represented by an extensionProperty object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 8eb6f41dda44c..adf80725a40d4 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationExtensionPropertyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationExtensionPropertyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationExtensionPropertyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 2c9740678bfa6..2fa2ad0ebe304 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationFederatedIdentityCredential Read the properties and relationships of a federatedIdentityCredential object assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 7ef9a77fe5029..ea00729571a7d 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationFederatedIdentityCredentialByName Read the properties and relationships of a federatedIdentityCredential object assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7f57931c2ee78..00289675aab96 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationFederatedIdentityCredentialCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationFederatedIdentityCredentialCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationFederatedIdentityCredentialCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 36fcf67b34f6f..78c4b93cb07ec 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationHomeRealmDiscoveryPolicy Get homeRealmDiscoveryPolicies from applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationHomeRealmDiscoveryPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationHomeRealmDiscoveryPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 9b66055728f8c..69d5218edaba4 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationHomeRealmDiscoveryPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 d8dfacb2d0b65..6bdf82ea86b39 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationLogo The main logo for the application. Not nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationLogo?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 94fd4ef51846d..693313fef4726 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 @@ -19,6 +19,9 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationMemberGroup?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 b3f5bb5f1cfce..e18f02164e4a8 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationMemberObject Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationMemberObject?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 cc4c9177d239d..356960d00d055 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwner Retrieve a list of owners for an application that are directoryObject types. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwner](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwner?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 5124593cfcbd2..4eb03dcfed3d2 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 6046254bfb175..ad44fef01b937 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 12ff679c73ad8..bdeb03d7144b8 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 5310c20814e52..ea839b71a4287 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerAsUser Get the item of type microsoft.graph.directoryObject as microsoft.graph.user +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerAsUser?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 a44cf312800bf..bf83ffe80c949 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerByRef Retrieve a list of owners for an application that are directoryObject types. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 d5fdc424c3097..2f01431297986 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7400457d0f214..3098b60276361 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerCountAsAppRoleAssignment Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 da2d425c7460a..2f6b16d46dae1 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerCountAsEndpoint Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 e039bd6d0a8fb..aabb2d2c566ee 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerCountAsServicePrincipal Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 502c8610a4a4b..e2b59cdd4daa8 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationOwnerCountAsUser Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationOwnerCountAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationOwnerCountAsUser?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 6e821dfdf7534..cfaf55fb29eea 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronization Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronization?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 89ccafa69f113..4355fa09eafa2 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationAccessToken Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationAccessToken](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationAccessToken?view=graph-powershell-beta) + ## SYNTAX ### AcquireExpanded (Default) 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 10a2f0e693ea2..7e2a754167e0a 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJob Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 9a41391795fe3..03b54c17b82bb 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobBulkUpload The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 8b5205825c091..727f671bbe9ac 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 473eb05738c68..e6679de65b9e8 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 007d1615f7d14..2f7180fff12ec 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobSchema The synchronization schema configured for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 1d9e0d790e461..c92694cc63146 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobSchemaDirectory Contains the collection of directories and all of their objects. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 9accd92d12fd5..ebcef3e210f6a 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationJobSchemaDirectoryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 9278c275ea4e2..24b461791e2a8 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationSecretCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationSecretCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationSecretCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 20b023e2ef353..d40c2753085a6 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationTemplate Preconfigured synchronization settings for a particular application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 be23fb91f2136..4b7ef21c0b6f2 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationTemplateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7697fdc64b491..100340e38b007 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationTemplateSchema Default synchronization schema for the jobs based on this template. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7e5c231225b0b..8300f3cc66b10 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationTemplateSchemaDirectory Contains the collection of directories and all of their objects. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 25e702b8d1e39..99c97c2f76fc3 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 76c36789b1e20..92768fd4a5b43 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationTemplate 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) + ## SYNTAX ### List (Default) 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 63de6fa4b0dd8..0fbf211a91bb7 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationTemplateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTemplateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 0fa8178bbd7c5..8c87edb1a5831 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationTokenIssuancePolicy List the tokenIssuancePolicy objects that are assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 903427451a3d8..cde9f2d25992d 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationTokenIssuancePolicyByRef List the tokenIssuancePolicy objects that are assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 88442950b5714..ded859cd8d154 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationTokenIssuancePolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenIssuancePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenIssuancePolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 e74f8ea6d3f40..dd42865508829 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationTokenLifetimePolicy List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 264a0fd196021..361bd3159c437 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 @@ -16,6 +16,9 @@ title: Get-MgApplicationTokenLifetimePolicyByRef List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 463b46cfb03e6..74b30abfe8df9 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 @@ -15,6 +15,9 @@ title: Get-MgApplicationTokenLifetimePolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaApplicationTokenLifetimePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaApplicationTokenLifetimePolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 1f8beaf490c31..349e816213823 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 @@ -16,6 +16,9 @@ title: Get-MgGroupAppRoleAssignment Represents the app roles granted to a group for an application. Supports $expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 36e4b35f6d756..5014529776a2b 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 @@ -15,6 +15,9 @@ title: Get-MgGroupAppRoleAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaGroupAppRoleAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 d4d8695e2cf15..9f46b9200bb26 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipal Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 c02b7a2743d63..81db0a958509e 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppManagementPolicy The appManagementPolicy applied to this application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppManagementPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppManagementPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 883da38813152..fa38618ec75e2 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppManagementPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppManagementPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppManagementPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 8fd564f424456..d5052e4de1cfd 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppRoleAssignedTo Read the properties and relationships of an appRoleAssignment object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 acf434580cd6d..c44c3ba77ed61 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppRoleAssignedToCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignedToCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignedToCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 88b996c38233d..e6bd564de776c 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppRoleAssignment Read the properties and relationships of an appRoleAssignment object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 a486613fc5608..d0fcbc4ea88bc 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalAppRoleAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalAppRoleAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 5ed2bd0663b63..a6e154e4f58ec 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipalByAppId Retrieve the properties and relationships of a servicePrincipal object. This API can be used to get agentIdentityBlueprintPrincipal objects as well by their ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 ed29028d42c20..86cb65298fbea 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 @@ -17,6 +17,9 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalById](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalById?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 2308d25aabe8f..69c3506208e58 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalClaimMappingPolicy List the claimsMappingPolicy objects that are assigned to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 58a74bbb0528f..ae5b83cf3575f 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalClaimMappingPolicyByRef List the claimsMappingPolicy objects that are assigned to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 c3fd7bf069c1e..8ee8a186f97ec 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalClaimMappingPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalClaimMappingPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalClaimMappingPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 707232d500e2d..1b71c820dfe7e 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 bf5c474a86163..b1b7bbae279ef 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 @@ -17,6 +17,9 @@ Directory objects created by this service principal. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObject?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 a5710289a5267..1909bfe06da57 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalCreatedObjectAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 52d5a323db38c..603f32a56a349 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalCreatedObjectCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 89a4c3082c3b3..5fabc03d88a71 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7ac87d28ca745..fab90b1909186 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalDelegatedPermissionClassification Get delegatedPermissionClassifications from servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 729c4dee9d522..f79c45788c6cb 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalDelegatedPermissionClassificationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 32c20ad6d2ed0..5eb68660c0c0f 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipalDelta Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalDelta](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) 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 8d291226fe94a..24b77716f9228 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalEndpoint Get endpoints from servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 50957c0a6e78d..f782097b9376c 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalEndpointCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalEndpointCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalEndpointCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7e5feae27d05b..888f18025524a 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicy List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 364d61294aeac..fbb83d2aab470 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 ee7b380b02046..a5fa5e1523968 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 924d8ddb5ee38..3c75bb17a7965 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 @@ -19,6 +19,9 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberGroup?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 69a378bc1ebd7..71f3dc4fd2b9a 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipalMemberObject Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberObject?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) 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 514dc6a9fe6f2..447a00a0312e8 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 @@ -18,6 +18,9 @@ HTTP Methods: GET Read-only. Nullable. Supports $expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOf?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 2d38734c4c509..7d8adedf8a545 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfAsAdministrativeUnit Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 7171a71d23510..b4169308d1d3c 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfAsDirectoryRole Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsDirectoryRole?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 b70009607cbdd..367e82021bd86 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfAsGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 31e2f9a37937e..7c8f80c059c96 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 2d86d3746d8ae..a297692f807d7 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 97e8fd8d65aa0..f3398033c3274 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfCountAsDirectoryRole Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 e40f23cb486cd..e75d19d4a8990 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalMemberOfCountAsGroup Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalMemberOfCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalMemberOfCountAsGroup?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 f83616131190e..a02f688378bb6 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 @@ -17,6 +17,9 @@ Delegated permission grants authorizing this service principal to access an API Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOauth2PermissionGrant](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOauth2PermissionGrant?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 6c17c53970860..6bf45024ecedc 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOauth2PermissionGrantCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOauth2PermissionGrantCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOauth2PermissionGrantCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 db17566e133cf..d531179718a60 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 @@ -18,6 +18,9 @@ Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObject](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObject?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 01c943ad35a7d..e338d766467e5 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 936b8bb6dbc4a..1fd80154c6a51 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectAsApplication Get the item of type microsoft.graph.directoryObject as microsoft.graph.application +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsApplication?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 bee4dd50ea42c..e61989a3e3e43 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 c2bc6c74eaa71..2d0e434fa6910 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 67b88bc05c900..db621792599a3 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 1feccc3f89de7..496fc8c0a158e 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 c23dfcdb68825..9e0ac409ee0d9 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 fdfb62120a43a..1ab77a07b262b 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCountAsApplication Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsApplication?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 7b0cdad5b379f..f00cb43470279 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCountAsEndpoint Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 213e13ae6dbcf..0eef6538be396 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCountAsGroup Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsGroup?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 13f3854db6866..eae48450bde6d 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 4ac2a7f5fc19b..0396f8470f5bc 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 @@ -17,6 +17,9 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwner](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwner?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 25cc0a2d12026..0ac005fbe887e 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerAsAppRoleAssignment Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 e5b51f566509c..c6f70a1a1b93c 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerAsEndpoint Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 a321140204fde..fe99a74b109db 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerAsServicePrincipal Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 19205b84120cc..db33743776e57 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerAsUser Get the item of type microsoft.graph.directoryObject as microsoft.graph.user +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerAsUser?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 477c6c254cb7f..57239c2785ae9 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 @@ -17,6 +17,9 @@ Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 ee253059eeaea..5a0456bd710ee 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 df3c7b99f12f5..88af1d51c88d2 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerCountAsAppRoleAssignment Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 132db211745f4..29621398ae5d1 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerCountAsEndpoint Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsEndpoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 255160d6eabf0..6ed0dd4fc3c2b 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerCountAsServicePrincipal Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 d8eaadcf60a45..f9031bea49634 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalOwnerCountAsUser Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalOwnerCountAsUser](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalOwnerCountAsUser?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 410f3268fc5c2..63bb0d033de59 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 @@ -17,6 +17,9 @@ Read the properties and relationships of a remoteDesktopSecurityConfiguration ob Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 index 5f9516d18e6ec..a6c6006efe1fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp 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) 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 index d649f3671c4b1..8b1a24c2b113b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp 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) 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 5d21eb8bc0f45..5bdeee511a4eb 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 53667725941ea..30712d5617140 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 2359f363a3a34..a65a3ffc27500 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronization Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 434a2689d5835..d01b11b605373 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationAccessToken Acquire an OAuth access token to authorize the Microsoft Entra provisioning service to provision users into an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationAccessToken](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationAccessToken?view=graph-powershell-beta) + ## SYNTAX ### AcquireExpanded (Default) 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 d03ca6c8b5504..0d2580afdfa88 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJob Retrieve the existing synchronization job and its properties. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 ad7a3576de986..efece3dcc5193 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobBulkUpload The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 f8042f99f09db..c9b456bb989ba 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 55f67eba2b85b..661a1b2c600c8 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 a7ef42b099857..3c84697918fdf 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobSchema Retrieve the schema for a given synchronization job or template. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 97f9f36ecefbb..e27f5e333934f 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobSchemaDirectory Contains the collection of directories and all of their objects. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 3d202b4cac063..3142926f9a795 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 f19a058c54b1d..4e86b0ddf25cb 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationSecretCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationSecretCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationSecretCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 a1d1fc3464b0e..808370a77f8ff 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationTemplate Preconfigured synchronization settings for a particular application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 e97b4f587cee6..b96ce764c3658 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationTemplateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 afc0e6647bd31..c92df213bf2ff 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchema Default synchronization schema for the jobs based on this template. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 5204cd3e727cc..864a8c54f16ec 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory Contains the collection of directories and all of their objects. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 03b33fb174c2f..94c4b6dc5ee99 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 05757863f6ef7..2319d809a7292 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTokenIssuancePolicy The tokenIssuancePolicies assigned to this service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 6f22ed4def7a9..5936d78bdc3f1 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTokenIssuancePolicyByRef The tokenIssuancePolicies assigned to this service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 762ece352e66e..d6e969894573b 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTokenIssuancePolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenIssuancePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenIssuancePolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 465614d00dae0..560e7e00ab726 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipalTokenLifetimePolicy List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicy](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 406fef7d9e742..474df756386e7 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 @@ -16,6 +16,9 @@ title: Get-MgServicePrincipalTokenLifetimePolicyByRef List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 5a8af4bec1f27..b4130ce6006a3 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTokenLifetimePolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTokenLifetimePolicyCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTokenLifetimePolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 d33e94e012a73..e0067c9f6e26d 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOf Get transitiveMemberOf from servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOf](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOf?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 35971b571ff70..a7c2ec15d5e43 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 fdcb69624b4bf..52f6730c0aeb2 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 de871ab38fb3e..d4e2fd92f7491 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfAsGroup Get the item of type microsoft.graph.directoryObject as microsoft.graph.group +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 61fa082cab99f..f2673e4c2da28 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 455eb784fa3c8..8e23056c08622 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 914b692d0f9b3..4932baf7e350b 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 e4ef30b1b58cb..9e51992e35d7f 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 @@ -15,6 +15,9 @@ title: Get-MgServicePrincipalTransitiveMemberOfCountAsGroup Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 4e537f4d60e8e..eb87c27c7df2d 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 @@ -16,6 +16,9 @@ title: Get-MgUserAppRoleAssignment Represents the app roles a user is granted for an application. Supports $expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) 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 311c06533585a..85ce7eb7e3dee 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 @@ -15,6 +15,9 @@ title: Get-MgUserAppRoleAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserAppRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.Applications/Get-MgBetaUserAppRoleAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) 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 e311c83fb679a..454e5c9c9f35b 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 @@ -15,6 +15,9 @@ title: Invoke-MgFilterApplicationSynchronizationJobSchemaOperator List all operators supported in the scoping filters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator?view=graph-powershell-beta) + ## SYNTAX ### Filter (Default) 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 eab0660d7d06a..c64d4dbf43564 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 @@ -15,6 +15,9 @@ title: Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator List all operators supported in the scoping filters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator?view=graph-powershell-beta) + ## SYNTAX ### Filter (Default) 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 4f3c721bbea33..c6b056cbce520 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 @@ -15,6 +15,9 @@ title: Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator List all operators supported in the scoping filters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator?view=graph-powershell-beta) + ## SYNTAX ### Filter (Default) 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 ac10e06f42269..c88c0c1cd5d44 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 @@ -15,6 +15,9 @@ title: Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator List all operators supported in the scoping filters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator?view=graph-powershell-beta) + ## SYNTAX ### Filter (Default) 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 d5b0e1ad61080..1189d4bb9e9f9 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 @@ -15,6 +15,9 @@ title: Invoke-MgFunctionApplicationSynchronizationJobSchema List all the functions currently supported in the attributeMappingSource. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionApplicationSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Function (Default) 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 e7cdb34c39c3a..7e5ae37699491 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 @@ -15,6 +15,9 @@ title: Invoke-MgFunctionApplicationSynchronizationTemplateSchema List all the functions currently supported in the attributeMappingSource. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Function (Default) 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 1cd6e05af4131..e77d6a5eef644 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 @@ -15,6 +15,9 @@ title: Invoke-MgFunctionServicePrincipalSynchronizationJobSchema List all the functions currently supported in the attributeMappingSource. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Function (Default) 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 b6f634fda0f6b..1bffaf4ac842f 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 @@ -15,6 +15,9 @@ title: Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema List all the functions currently supported in the attributeMappingSource. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Function (Default) 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 4a1e15e2888d1..3170a6a9bd804 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 @@ -16,6 +16,9 @@ title: Invoke-MgInstantiateApplicationTemplate Add an instance of an application from the Microsoft Entra application gallery into your directory. For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaInstantiateApplicationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaInstantiateApplicationTemplate?view=graph-powershell-beta) + ## SYNTAX ### InstantiateExpanded (Default) 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 44cf3773cff22..b52aac9e3e353 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 @@ -16,6 +16,9 @@ title: Invoke-MgParseApplicationSynchronizationJobSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression?view=graph-powershell-beta) + ## SYNTAX ### ParseExpanded (Default) 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 a2d21a7da89af..e2449340bd02b 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 @@ -16,6 +16,9 @@ title: Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression?view=graph-powershell-beta) + ## SYNTAX ### ParseExpanded (Default) 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 833c743dcd785..237dc0407002c 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 @@ -16,6 +16,9 @@ title: Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression?view=graph-powershell-beta) + ## SYNTAX ### ParseExpanded (Default) 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 5503864931848..daebbce6be175 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 @@ -16,6 +16,9 @@ title: Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression](/powershell/module/Microsoft.Graph.Beta.Applications/Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression?view=graph-powershell-beta) + ## SYNTAX ### ParseExpanded (Default) 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 74c14f5987fc9..01172ebd17958 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 @@ -16,6 +16,9 @@ title: New-MgApplication Create a new application object. This API can also create an agentIdentityBlueprint object when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplication?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 46059d76475a5..ed1883f195465 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 @@ -17,6 +17,9 @@ Assign an appManagementPolicy policy object to an application or service princip The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationAppManagementPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 b01f9e003c602..bfe6e5b2dbf32 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 @@ -15,6 +15,9 @@ title: New-MgApplicationExtensionProperty Create a new directory extension definition, represented by an extensionProperty object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 b3bd11e4aec17..9dd7fdcc5e80e 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 @@ -17,6 +17,9 @@ Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 23d2ca5991da0..9127f09895dbd 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 @@ -16,6 +16,9 @@ title: New-MgApplicationOwnerByRef Add an owner to an application. Application owners can be individual users, the associated service principal, or another service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationOwnerByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 460e4b896f58b..148ae6156a2e5 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 @@ -15,6 +15,9 @@ title: New-MgApplicationSynchronizationJob Create new navigation property to jobs for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 7e8ced58754b1..47e2adcf5bdce 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 @@ -16,6 +16,9 @@ title: New-MgApplicationSynchronizationJobOnDemand Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJobOnDemand](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJobOnDemand?view=graph-powershell-beta) + ## SYNTAX ### ProvisionExpanded (Default) 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 b98dc6b551a7d..f34abc5a3050c 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 @@ -15,6 +15,9 @@ title: New-MgApplicationSynchronizationJobSchemaDirectory Create new navigation property to directories for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 851264b3c997d..7706da77f32e8 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 @@ -15,6 +15,9 @@ title: New-MgApplicationSynchronizationTemplate Create new navigation property to templates for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 6f71a0bb2a4a1..cac502a9f17c0 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 @@ -15,6 +15,9 @@ title: New-MgApplicationSynchronizationTemplateSchemaDirectory Create new navigation property to directories for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 00d7c956a165d..532696061ebaa 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 @@ -15,6 +15,9 @@ title: New-MgApplicationTokenIssuancePolicyByRef Assign a tokenIssuancePolicy to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 8a0d8b394cb40..6dab25acf6abc 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 @@ -16,6 +16,9 @@ title: New-MgApplicationTokenLifetimePolicyByRef Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaApplicationTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaApplicationTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 aa817b7f261b2..5fea58c5230f1 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 @@ -18,6 +18,9 @@ All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 15c14d5b9c6af..344e94fd55728 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 @@ -16,6 +16,9 @@ title: New-MgServicePrincipal Create a new servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 8fbb87143ee76..488ee2e4549db 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 @@ -18,6 +18,9 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 75ec10089598c..1c3d5f1ee97e6 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 @@ -18,6 +18,9 @@ App roles that are assigned to service principals are also known as application Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 dbe70e9479aa8..9c4f467774004 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalClaimMappingPolicyByRef Assign a claimsMappingPolicy to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalClaimMappingPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 7ce56d3e3c4d6..1a556f20342f6 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalDelegatedPermissionClassification Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 706514ac61bdb..fc66d1d104c75 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalEndpoint Create new navigation property to endpoints for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 e1883cb337f57..f9a35821a4bb5 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Assign a homeRealmDiscoveryPolicy to a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 c2b76effdc3cf..c5f0a73561020 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 @@ -16,6 +16,9 @@ title: New-MgServicePrincipalOwnerByRef Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalOwnerByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalOwnerByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 index 0788323c5c302..0e5aef02e5c25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -16,6 +16,9 @@ title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp 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) 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 c0161648734a2..8a3387881f8e8 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 @@ -16,6 +16,9 @@ title: New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguration object on the servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 caf66f002d650..4441f237b68bd 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 @@ -17,6 +17,9 @@ Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 5be5d3c04d402..f9527db41210b 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 @@ -16,6 +16,9 @@ title: New-MgServicePrincipalSynchronizationJobOnDemand Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJobOnDemand](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJobOnDemand?view=graph-powershell-beta) + ## SYNTAX ### ProvisionExpanded (Default) 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 9b5287170ca59..edec412ea8346 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalSynchronizationJobSchemaDirectory Create new navigation property to directories for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 6bb4ece0602eb..d3433c280b1b2 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalSynchronizationTemplate Create new navigation property to templates for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 91c4bd4019485..3018d6eddac7c 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalSynchronizationTemplateSchemaDirectory Create new navigation property to directories for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 96b5252229543..8a47e8e209336 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 @@ -15,6 +15,9 @@ title: New-MgServicePrincipalTokenIssuancePolicyByRef Create new navigation property ref to tokenIssuancePolicies for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 c76b4e34b055c..018696085aa5c 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 @@ -16,6 +16,9 @@ title: New-MgServicePrincipalTokenLifetimePolicyByRef Assign a tokenLifetimePolicy to a servicePrincipal. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 623d9c764fdd1..894736391dc5c 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 @@ -15,6 +15,9 @@ title: New-MgUserAppRoleAssignment Grant an app role assignment to an agentUser. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/New-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) 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 53067421c872c..ede6482dacb88 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 @@ -18,6 +18,9 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplication?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 9dfe37dce558b..7585e7a8fde68 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 @@ -16,6 +16,9 @@ title: Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 728824c706406..ebd13b8279e8c 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 @@ -18,6 +18,9 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationByAppId?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 ddb2d17335dd2..d85644831b35d 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 @@ -18,6 +18,9 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationByUniqueName?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 f0fc9e86f4c01..02bcc8f825adf 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 @@ -16,6 +16,9 @@ title: Remove-MgApplicationExtensionProperty Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 e26ce6738c9a6..dacfb055bae58 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationFederatedIdentityCredential Delete a federatedIdentityCredential object from an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 6c832ec6e1a81..2c4347672c6e4 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationFederatedIdentityCredentialByName Delete a federatedIdentityCredential object from an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 89c6ca596fc91..e2e223a32666c 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 @@ -16,6 +16,9 @@ title: Remove-MgApplicationKey Remove a key credential from an agentIdentityBlueprint. This method along with addKey can be used to automate rolling its expiring keys. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationKey](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationKey?view=graph-powershell-beta) + ## SYNTAX ### RemoveExpanded (Default) 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 f1ab8ed62af37..7919c21cb9122 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 @@ -16,6 +16,9 @@ title: Remove-MgApplicationLogo The main logo for the application. Not nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationLogo?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 24edbf1f488a5..7c41d43ba7960 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 @@ -16,6 +16,9 @@ title: Remove-MgApplicationOwnerDirectoryObjectByRef Remove an owner from an application. As a recommended best practice, apps should have at least two owners. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationOwnerDirectoryObjectByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 b3e486ffbd7e9..2879c9b1b346f 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationPassword Remove a password from an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationPassword](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationPassword?view=graph-powershell-beta) + ## SYNTAX ### RemoveExpanded (Default) 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 9fe505069cd2b..28e3ab8872584 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronization Delete navigation property synchronization for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronization?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 38481bbff0aa8..a626df9af2543 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationJob Delete navigation property jobs for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 089e9e85c62e8..b409627e158cc 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationJobBulkUpload Delete navigation property bulkUpload for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 5195e94513635..bd86cee530921 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 cc1a38c0dbead..53a39916b485c 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationJobSchema Delete navigation property schema for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 33367aaa614e4..d4b4593c4e55a 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationJobSchemaDirectory Delete navigation property directories for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 abfe47ff2532c..cc4c0385cb283 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationTemplate Delete navigation property templates for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 5e3eb72c1ba8e..f312aae65625e 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationTemplateSchema Delete navigation property schema for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 2bd5fff29c321..553ad3ce1c56f 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationSynchronizationTemplateSchemaDirectory Delete navigation property directories for applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 160d1ebaefe89..fba12fb71721c 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef Remove a tokenIssuancePolicy from an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 d9332be2059b5..046bb9150a3d9 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 @@ -15,6 +15,9 @@ title: Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef Remove a tokenLifetimePolicy from an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 78317e5396daf..22b343f721f6a 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 @@ -15,6 +15,9 @@ title: Remove-MgGroupAppRoleAssignment Deletes an appRoleAssignment that a group has been granted. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 993c2a64793e7..076c3f907df68 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipal Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 5cb779a20f9fd..e3fb0557df54f 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalAppRoleAssignedTo Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 55e77fc3a9cc7..bc0a706f9582c 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 @@ -17,6 +17,9 @@ Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 e77b44a23d824..ce4a52ce8c6f9 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipalByAppId Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 caea47e8b5161..39f1b7d2aadc9 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef Remove a claimsMappingPolicy from a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 31d6083b76757..ae657ea939926 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalDelegatedPermissionClassification Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 0e2964a2cd6e0..24ed775156c3d 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalEndpoint Delete navigation property endpoints for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 f5e7a091afc7f..725f0661612d9 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicy Remove a homeRealmDiscoveryPolicy from a servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 ce65c2ee63cbe..2227115b4f8ad 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipalOwnerDirectoryObjectByRef Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 aede7ffde625a..58ec75f1417da 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 index afed18a802c06..ca4972333a75b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClient 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) 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 d256b4b6c5e5a..890d1d18c74c9 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGr Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 ace5803e5c842..345aca3bbe278 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronization Delete navigation property synchronization for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 2fefe6d2085c7..a9f542067b291 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 @@ -16,6 +16,9 @@ title: Remove-MgServicePrincipalSynchronizationJob Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 e5f16894bf944..03cc211ff3d2f 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationJobBulkUpload Delete navigation property bulkUpload for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 e0d64d0262405..44ba5e0fa3929 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 8a4e45ec36001..f5a4f6cdd99e7 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationJobSchema Delete navigation property schema for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 a1f3008ae2930..248f5f5665609 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationJobSchemaDirectory Delete navigation property directories for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 9ccc7c9613d30..4eacbb5c7f6e5 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationTemplate Delete navigation property templates for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 a6d6aa0bfe08d..df360aaeffdce 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationTemplateSchema Delete navigation property schema for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 1fc2a151e03b0..693e69e27db74 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory Delete navigation property directories for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 0e17aaa49955a..8321071b52e2b 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalTokenIssuancePolicyByRef Delete ref of navigation property tokenIssuancePolicies for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 9fc927909188f..44e8e3e7244bf 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef Delete ref of navigation property tokenIssuancePolicies for servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 573e266feabbb..219ff37940c5a 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalTokenLifetimePolicyByRef Remove a tokenLifetimePolicy object from a service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 c558aa706ceae..715e0ad04760d 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 @@ -15,6 +15,9 @@ title: Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef Remove a tokenLifetimePolicy object from a service principal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 d480f53cdfad2..75342ccec76ee 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 @@ -15,6 +15,9 @@ title: Remove-MgUserAppRoleAssignment Delete an appRoleAssignment that has been granted to a user. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) 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 b5e82304c0ff7..bd64a7da9cc7a 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 @@ -16,6 +16,9 @@ title: Restart-MgApplicationSynchronizationJob Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. +> [!NOTE] +> To view the beta release of this cmdlet, view [Restart-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Restart-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### RestartExpanded (Default) 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 1da113089e84f..ed3408305e5ca 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 @@ -16,6 +16,9 @@ title: Restart-MgServicePrincipalSynchronizationJob Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. +> [!NOTE] +> To view the beta release of this cmdlet, view [Restart-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Restart-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### RestartExpanded (Default) 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 d9de19be81a51..0a37ba20e9e89 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 @@ -16,6 +16,9 @@ title: Set-MgApplicationLogo The main logo for the application. Not nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaApplicationLogo](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationLogo?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) 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 4d11aa356144f..a4bf357915ff5 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 @@ -15,6 +15,9 @@ title: Set-MgApplicationSynchronization Update the navigation property synchronization in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronization?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) 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 4517c32e5ac97..2cc44a66ff17f 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 @@ -15,6 +15,9 @@ title: Set-MgApplicationSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) 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 9d7b6ac438279..a421b5a999321 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 @@ -15,6 +15,9 @@ title: Set-MgApplicationSynchronizationSecret Update property secrets value. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaApplicationSynchronizationSecret](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationSynchronizationSecret?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) 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 135bae30c929d..eb41bb682a8d0 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 @@ -16,6 +16,9 @@ title: Set-MgApplicationVerifiedPublisher Set the the verifiedPublisher on an agentIdentityBlueprint. For more information, including prerequisites to setting a verified publisher, see Publisher verification. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaApplicationVerifiedPublisher](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaApplicationVerifiedPublisher?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) 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 53c07a857990a..00e812230852f 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 @@ -15,6 +15,9 @@ title: Set-MgServicePrincipalSynchronization Update the navigation property synchronization in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronization](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronization?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) 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 77c62c3054f58..be965f64d8e99 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 @@ -15,6 +15,9 @@ title: Set-MgServicePrincipalSynchronizationJobBulkUploadContent The bulk upload operation for the job. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) 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 9d6737211c75d..3b3e5c858239c 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 @@ -15,6 +15,9 @@ title: Set-MgServicePrincipalSynchronizationSecret Provide credentials for establishing connectivity with the target system. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaServicePrincipalSynchronizationSecret](/powershell/module/Microsoft.Graph.Beta.Applications/Set-MgBetaServicePrincipalSynchronizationSecret?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) 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 d190bafca64e9..fcfa5847f9669 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 @@ -19,6 +19,9 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. +> [!NOTE] +> To view the beta release of this cmdlet, view [Start-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Start-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Start (Default) 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 5377f32af0977..1a56ef51ac12a 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 @@ -19,6 +19,9 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. +> [!NOTE] +> To view the beta release of this cmdlet, view [Start-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Start-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Start (Default) 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 36bcaf1e5a7c9..25f33f21909d8 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 @@ -16,6 +16,9 @@ title: Suspend-MgApplicationSynchronizationJob Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. +> [!NOTE] +> To view the beta release of this cmdlet, view [Suspend-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Suspend-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Pause (Default) 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 8b168499dffef..98892f9b9d776 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 @@ -16,6 +16,9 @@ title: Suspend-MgServicePrincipalSynchronizationJob Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. +> [!NOTE] +> To view the beta release of this cmdlet, view [Suspend-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Suspend-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### Pause (Default) 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 d4798953e238f..2cf38f53451b5 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 @@ -24,6 +24,9 @@ If the properties fail multiple validations, only the first validation failure i However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Test-MgBetaApplicationProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaApplicationProperty?view=graph-powershell-beta) + ## SYNTAX ### ValidateExpanded (Default) 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 38815224a1f25..24447d1479bb4 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 @@ -15,6 +15,9 @@ title: Test-MgApplicationSynchronizationJobCredential Validate that the credentials are valid in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Test-MgBetaApplicationSynchronizationJobCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaApplicationSynchronizationJobCredential?view=graph-powershell-beta) + ## SYNTAX ### ValidateExpanded (Default) 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 0b3f14161d6bb..fdd100d634361 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 @@ -24,6 +24,9 @@ If the properties fail multiple validations, only the first validation failure i However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Test-MgBetaServicePrincipalProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaServicePrincipalProperty?view=graph-powershell-beta) + ## SYNTAX ### ValidateExpanded (Default) 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 2ed422ffb5976..9e25212b2a3f5 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 @@ -15,6 +15,9 @@ title: Test-MgServicePrincipalSynchronizationJobCredential Validate that the credentials are valid in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Test-MgBetaServicePrincipalSynchronizationJobCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Test-MgBetaServicePrincipalSynchronizationJobCredential?view=graph-powershell-beta) + ## SYNTAX ### ValidateExpanded (Default) 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 f7c5587846b3a..343cf5be933c5 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 @@ -16,6 +16,9 @@ title: Update-MgApplication Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplication](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplication?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 9c40f30976a3c..ac7406158dc10 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 @@ -16,6 +16,9 @@ title: Update-MgApplicationByAppId Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationByAppId?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 40345426debe5..fc19b976d4652 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 @@ -16,6 +16,9 @@ title: Update-MgApplicationByUniqueName Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationByUniqueName](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationByUniqueName?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 1550de05fb174..23819df477517 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationExtensionProperty Update the navigation property extensionProperties in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationExtensionProperty](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationExtensionProperty?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 fb3794230111e..54d3522b6a26b 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 @@ -17,6 +17,9 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationFederatedIdentityCredential](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationFederatedIdentityCredential?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 3307182a8b698..030200b9913f9 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 @@ -17,6 +17,9 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationFederatedIdentityCredentialByName](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationFederatedIdentityCredentialByName?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 42bdbf4fc7e7c..053a08510c4df 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationJob Update the navigation property jobs in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 7740e0220094f..01ab006adb695 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationJobBulkUpload Update the navigation property bulkUpload in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 fdaf4dbd3f93b..54221d9501e89 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationJobSchema Update the navigation property schema in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 7597fb5ce7954..f5e6278ec97ba 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationJobSchemaDirectory Update the navigation property directories in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 96f24c5c407bc..f2dce81ec4d68 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationTemplate Update (override) the synchronization template associated with a given application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 04b7b549cf1d8..74be64065b7e2 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationTemplateSchema Update the navigation property schema in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 0adbb4d1243fd..6103d9ff49fad 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 @@ -15,6 +15,9 @@ title: Update-MgApplicationSynchronizationTemplateSchemaDirectory Update the navigation property directories in applications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 87a786d6f0ec4..9defb55c893f6 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 @@ -15,6 +15,9 @@ title: Update-MgGroupAppRoleAssignment Update the navigation property appRoleAssignments in groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaGroupAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaGroupAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 b9ff0d964c255..66462e3c0c9a8 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 @@ -16,6 +16,9 @@ title: Update-MgServicePrincipal Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipal](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipal?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 bae3d272b6b7f..d6236f467831b 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalAppRoleAssignedTo Update the navigation property appRoleAssignedTo in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalAppRoleAssignedTo](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalAppRoleAssignedTo?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 00219da52aeaa..30e777796332c 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalAppRoleAssignment Update the navigation property appRoleAssignments in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 411ba7d50c100..87a25bc1e8cd5 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 @@ -16,6 +16,9 @@ title: Update-MgServicePrincipalByAppId Create a new servicePrincipal object if it doesn't exist, or update the properties of an existing servicePrincipal object. This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalByAppId](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalByAppId?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 8334ee4fbc2ee..f9bdb0ca60926 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalDelegatedPermissionClassification Update the navigation property delegatedPermissionClassifications in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalDelegatedPermissionClassification](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalDelegatedPermissionClassification?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 f8389671c7221..9bcc53dface83 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalEndpoint Update the navigation property endpoints in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalEndpoint](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalEndpoint?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 46c45a2d8b9ca..8ac9fe984b6d3 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 @@ -16,6 +16,9 @@ title: Update-MgServicePrincipalRemoteDesktopSecurityConfiguration Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 index db7e9519c8156..4883d085f64e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClient 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) 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 5d461f632f2b2..56b67cb8634c5 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 @@ -16,6 +16,9 @@ title: Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGr Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 a8057c5a00e21..afb6477cb2186 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationJob Update the navigation property jobs in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJob](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJob?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 64c84e6e5a7cf..7735997fdd3b1 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationJobBulkUpload Update the navigation property bulkUpload in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobBulkUpload](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobBulkUpload?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 91d7d03b165c1..526174da4f717 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 @@ -18,6 +18,9 @@ This method fully replaces the current schema with the one provided in the reque To update the schema of a template, make the call on the application object. You must be the owner of the application. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobSchema?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 0e9e1751ac849..84fb78ed6b5b3 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationJobSchemaDirectory Update the navigation property directories in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 350ae402e5d3f..eed099e964b34 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationTemplate Update the navigation property templates in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplate](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplate?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 ea3689e793d74..3725227ec386f 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationTemplateSchema Update the navigation property schema in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplateSchema](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplateSchema?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 70c6ea7517770..8c0789dc724bc 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 @@ -15,6 +15,9 @@ title: Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory Update the navigation property directories in servicePrincipals +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) 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 d2c012559c48e..0778aae5224c6 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 @@ -15,6 +15,9 @@ title: Update-MgUserAppRoleAssignment Update the navigation property appRoleAssignments in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserAppRoleAssignment](/powershell/module/Microsoft.Graph.Beta.Applications/Update-MgBetaUserAppRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From a4589c8885f513e6114e0c751fdd419ff739ea96 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:33 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- .../Add-MgApplicationKey.md | 14 ++++- .../Add-MgApplicationPassword.md | 15 +++++- .../Add-MgServicePrincipalKey.md | 14 ++++- .../Add-MgServicePrincipalPassword.md | 7 ++- ...ServicePrincipalTokenSigningCertificate.md | 7 ++- .../Clear-MgApplicationVerifiedPublisher.md | 7 ++- .../Confirm-MgApplicationMemberGroup.md | 11 +--- .../Confirm-MgApplicationMemberObject.md | 11 +--- .../Confirm-MgServicePrincipalMemberGroup.md | 11 +--- .../Confirm-MgServicePrincipalMemberObject.md | 11 +--- ...cationSynchronizationJobSchemaDirectory.md | 11 +--- ...nSynchronizationTemplateSchemaDirectory.md | 11 +--- ...ncipalSynchronizationJobSchemaDirectory.md | 7 ++- ...lSynchronizationTemplateSchemaDirectory.md | 11 +--- .../Get-MgApplication.md | 51 ++++++++++++++++--- .../Get-MgApplicationByAppId.md | 9 +++- .../Get-MgApplicationById.md | 11 +--- .../Get-MgApplicationByUniqueName.md | 11 +--- .../Get-MgApplicationCreatedOnBehalfOf.md | 11 +--- .../Get-MgApplicationDelta.md | 7 ++- .../Get-MgApplicationExtensionProperty.md | 7 ++- ...gApplicationFederatedIdentityCredential.md | 7 ++- ...cationFederatedIdentityCredentialByName.md | 11 +--- ...t-MgApplicationHomeRealmDiscoveryPolicy.md | 12 +---- .../Get-MgApplicationLogo.md | 11 +--- .../Get-MgApplicationMemberGroup.md | 11 +--- .../Get-MgApplicationMemberObject.md | 11 +--- .../Get-MgApplicationOwner.md | 7 ++- .../Get-MgApplicationOwnerByRef.md | 11 +--- ...MgApplicationSynchronizationAccessToken.md | 7 ++- .../Get-MgApplicationTemplate.md | 16 ++++-- .../Get-MgApplicationTokenIssuancePolicy.md | 7 ++- ...t-MgApplicationTokenIssuancePolicyByRef.md | 11 +--- .../Get-MgApplicationTokenLifetimePolicy.md | 7 ++- ...t-MgApplicationTokenLifetimePolicyByRef.md | 11 +--- .../Get-MgGroupAppRoleAssignment.md | 7 ++- .../Get-MgServicePrincipal.md | 51 ++++++++++++++++--- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 7 ++- ...Get-MgServicePrincipalAppRoleAssignment.md | 7 ++- .../Get-MgServicePrincipalByAppId.md | 11 +--- .../Get-MgServicePrincipalById.md | 11 +--- ...et-MgServicePrincipalClaimMappingPolicy.md | 7 ++- ...ServicePrincipalClaimMappingPolicyByRef.md | 11 +--- .../Get-MgServicePrincipalCreatedObject.md | 7 ++- ...ncipalDelegatedPermissionClassification.md | 7 ++- .../Get-MgServicePrincipalDelta.md | 7 ++- .../Get-MgServicePrincipalEndpoint.md | 12 +---- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 7 ++- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 11 +--- .../Get-MgServicePrincipalMemberGroup.md | 11 +--- .../Get-MgServicePrincipalMemberObject.md | 11 +--- .../Get-MgServicePrincipalMemberOf.md | 7 ++- ...MgServicePrincipalOauth2PermissionGrant.md | 7 ++- .../Get-MgServicePrincipalOwnedObject.md | 7 ++- .../Get-MgServicePrincipalOwner.md | 7 ++- .../Get-MgServicePrincipalOwnerByRef.md | 11 +--- ...cipalRemoteDesktopSecurityConfiguration.md | 7 ++- ...pSecurityConfigurationApprovedClientApp.md | 7 ++- ...pSecurityConfigurationTargetDeviceGroup.md | 7 ++- ...vicePrincipalSynchronizationAccessToken.md | 11 +--- ...et-MgServicePrincipalSynchronizationJob.md | 7 ++- ...ervicePrincipalSynchronizationJobSchema.md | 7 ++- ...ServicePrincipalSynchronizationTemplate.md | 10 +--- ...t-MgServicePrincipalTokenIssuancePolicy.md | 11 +--- ...t-MgServicePrincipalTokenLifetimePolicy.md | 7 ++- ...ervicePrincipalTokenLifetimePolicyByRef.md | 11 +--- ...et-MgServicePrincipalTransitiveMemberOf.md | 7 ++- .../Get-MgUserAppRoleAssignment.md | 11 ++-- ...icationSynchronizationJobSchemaOperator.md | 11 +--- ...onSynchronizationTemplateSchemaOperator.md | 11 +--- ...incipalSynchronizationJobSchemaOperator.md | 7 ++- ...alSynchronizationTemplateSchemaOperator.md | 11 +--- ...tionApplicationSynchronizationJobSchema.md | 11 +--- ...pplicationSynchronizationTemplateSchema.md | 11 +--- ...ervicePrincipalSynchronizationJobSchema.md | 7 ++- ...ePrincipalSynchronizationTemplateSchema.md | 11 +--- ...Invoke-MgInstantiateApplicationTemplate.md | 7 ++- ...ationSynchronizationJobSchemaExpression.md | 11 +--- ...SynchronizationTemplateSchemaExpression.md | 11 +--- ...cipalSynchronizationJobSchemaExpression.md | 11 +--- ...SynchronizationTemplateSchemaExpression.md | 11 +--- .../New-MgApplication.md | 7 ++- ...w-MgApplicationAppManagementPolicyByRef.md | 7 ++- .../New-MgApplicationExtensionProperty.md | 7 ++- ...gApplicationFederatedIdentityCredential.md | 7 ++- .../New-MgApplicationOwnerByRef.md | 13 +++-- ...MgApplicationSynchronizationJobOnDemand.md | 11 +--- ...w-MgApplicationTokenIssuancePolicyByRef.md | 7 ++- ...w-MgApplicationTokenLifetimePolicyByRef.md | 7 ++- .../New-MgGroupAppRoleAssignment.md | 17 ++++++- .../New-MgServicePrincipal.md | 7 ++- ...New-MgServicePrincipalAppRoleAssignedTo.md | 7 ++- ...New-MgServicePrincipalAppRoleAssignment.md | 7 ++- ...ServicePrincipalClaimMappingPolicyByRef.md | 7 ++- ...ncipalDelegatedPermissionClassification.md | 7 ++- .../New-MgServicePrincipalEndpoint.md | 11 +--- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 7 ++- .../New-MgServicePrincipalOwnerByRef.md | 7 ++- ...pSecurityConfigurationApprovedClientApp.md | 7 ++- ...pSecurityConfigurationTargetDeviceGroup.md | 7 ++- ...ew-MgServicePrincipalSynchronizationJob.md | 7 ++- ...vicePrincipalSynchronizationJobOnDemand.md | 21 ++++++-- ...ervicePrincipalTokenLifetimePolicyByRef.md | 7 ++- .../New-MgUserAppRoleAssignment.md | 7 ++- .../Remove-MgApplication.md | 7 ++- ...anagementPolicyAppManagementPolicyByRef.md | 7 ++- .../Remove-MgApplicationByAppId.md | 11 +--- .../Remove-MgApplicationByUniqueName.md | 11 +--- .../Remove-MgApplicationExtensionProperty.md | 7 ++- ...gApplicationFederatedIdentityCredential.md | 7 ++- ...cationFederatedIdentityCredentialByName.md | 11 +--- .../Remove-MgApplicationKey.md | 7 ++- ...-MgApplicationOwnerDirectoryObjectByRef.md | 7 ++- .../Remove-MgApplicationPassword.md | 7 ++- ...nIssuancePolicyTokenIssuancePolicyByRef.md | 7 ++- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 7 ++- .../Remove-MgGroupAppRoleAssignment.md | 7 ++- .../Remove-MgServicePrincipal.md | 7 ++- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 7 ++- ...ove-MgServicePrincipalAppRoleAssignment.md | 7 ++- .../Remove-MgServicePrincipalByAppId.md | 11 +--- ...aimMappingPolicyClaimMappingPolicyByRef.md | 7 ++- ...ncipalDelegatedPermissionClassification.md | 7 ++- .../Remove-MgServicePrincipalEndpoint.md | 11 +--- ...veryPolicyHomeRealmDiscoveryPolicyByRef.md | 7 ++- .../Remove-MgServicePrincipalKey.md | 7 ++- ...rvicePrincipalOwnerDirectoryObjectByRef.md | 7 ++- .../Remove-MgServicePrincipalPassword.md | 7 ++- ...cipalRemoteDesktopSecurityConfiguration.md | 7 ++- ...pSecurityConfigurationApprovedClientApp.md | 7 ++- ...pSecurityConfigurationTargetDeviceGroup.md | 11 +--- ...ve-MgServicePrincipalSynchronizationJob.md | 7 ++- ...ervicePrincipalTokenLifetimePolicyByRef.md | 11 +--- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 7 ++- .../Remove-MgUserAppRoleAssignment.md | 7 ++- ...Restart-MgApplicationSynchronizationJob.md | 11 +--- ...rt-MgServicePrincipalSynchronizationJob.md | 7 ++- .../Set-MgApplicationLogo.md | 11 +--- .../Set-MgApplicationVerifiedPublisher.md | 7 ++- ...MgServicePrincipalSynchronizationSecret.md | 7 ++- .../Start-MgApplicationSynchronizationJob.md | 11 +--- ...rt-MgServicePrincipalSynchronizationJob.md | 7 ++- ...Suspend-MgApplicationSynchronizationJob.md | 11 +--- ...nd-MgServicePrincipalSynchronizationJob.md | 7 ++- .../Test-MgApplicationProperty.md | 11 +--- ...ApplicationSynchronizationJobCredential.md | 11 +--- .../Test-MgServicePrincipalProperty.md | 11 +--- ...cePrincipalSynchronizationJobCredential.md | 11 +--- .../Update-MgApplication.md | 7 ++- .../Update-MgApplicationByAppId.md | 11 +--- .../Update-MgApplicationByUniqueName.md | 14 ++++- .../Update-MgApplicationExtensionProperty.md | 11 +--- ...gApplicationFederatedIdentityCredential.md | 9 +++- ...cationFederatedIdentityCredentialByName.md | 11 +--- ...te-MgApplicationSynchronizationTemplate.md | 11 +--- .../Update-MgGroupAppRoleAssignment.md | 11 +--- .../Update-MgServicePrincipal.md | 7 ++- ...ate-MgServicePrincipalAppRoleAssignedTo.md | 11 +--- ...ate-MgServicePrincipalAppRoleAssignment.md | 11 +--- .../Update-MgServicePrincipalByAppId.md | 14 ++++- ...ncipalDelegatedPermissionClassification.md | 11 +--- .../Update-MgServicePrincipalEndpoint.md | 11 +--- ...cipalRemoteDesktopSecurityConfiguration.md | 7 ++- ...pSecurityConfigurationApprovedClientApp.md | 7 ++- ...pSecurityConfigurationTargetDeviceGroup.md | 7 ++- ...ervicePrincipalSynchronizationJobSchema.md | 11 +--- .../Update-MgUserAppRoleAssignment.md | 11 +--- 167 files changed, 795 insertions(+), 818 deletions(-) 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 8722374494b5d..5018b66ae36a6 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 @@ -88,8 +88,9 @@ You can use the Update application operation to perform an update instead. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Add a new key credential to an application -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -105,7 +106,12 @@ $params = @{ Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params -### EXAMPLE 2 +``` +This example will add a new key credential to an application + +### Example 2: Add a key credential and an associated password for the key + +```powershell Import-Module Microsoft.Graph.Applications @@ -123,6 +129,10 @@ $params = @{ Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params +``` +This example will add a key credential and an associated password for the key + + ## PARAMETERS ### -AdditionalProperties 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 8c35f9ccc74ac..bc85fa11d5ebb 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 @@ -80,8 +80,9 @@ You can also add passwords while creating the application. | 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 -### EXAMPLE 1 +```powershell Connect-MgGraph -Scopes 'Application.ReadWrite.All' @@ -104,8 +105,13 @@ SecretText : StartDateTime : 26/5/2022 1:03:31 pm AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]} +``` + +Add a password to an application that expires in six months from the current date. + +### Example 2: Add a password credential to an application with a start date -### EXAMPLE 2 +```powershell Connect-MgGraph -Scopes 'Application.ReadWrite.All' @@ -132,6 +138,11 @@ SecretText : StartDateTime : 26/5/2022 2:00:00 pm AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]} +``` + +Add a password to an application that becomes valid at 12:00 am the next day and is valid for six months. + +Use `$secret.StartDateTime.ToLocalTime()` to convert the returned dates from UTC to the local timezone. ## PARAMETERS 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 d146ede63923c..995102ab2de16 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 @@ -85,8 +85,9 @@ Update servicePrincipal can be used to perform an update instead. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Adding a new key credential to a servicePrincipal -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -102,7 +103,12 @@ $params = @{ Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params -### EXAMPLE 2 +``` +This example shows adding a new key credential to a serviceprincipal + +### Example 2: Adding a key credential and an associated password for the key + +```powershell Import-Module Microsoft.Graph.Applications @@ -120,6 +126,10 @@ $params = @{ Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows adding a key credential and an associated password for the key + + ## PARAMETERS ### -AdditionalProperties 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 a0812a60c8c69..587390ef4e32d 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 @@ -75,8 +75,9 @@ Add a strong password or secret to a servicePrincipal object. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -88,6 +89,10 @@ $params = @{ Add-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Add-MgServicePrincipalPassword Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 b05f8f814eb49..2ca91e91d4ad4 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 @@ -92,8 +92,9 @@ The endDateTime can be up to three years after the certificate is created. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -104,6 +105,10 @@ $params = @{ Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Add-MgServicePrincipalTokenSigningCertificate Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 b3cf497fd3b86..622dc071a7bb4 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 @@ -50,13 +50,18 @@ Unset the verifiedPublisher previously set on an agentIdentityBlueprint, removin For more information, see Publisher verification. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId +``` +This example shows how to use the Clear-MgApplicationVerifiedPublisher Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 bf833c698b99a..d28962d4ba3d1 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 @@ -76,16 +76,6 @@ You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -529,5 +519,6 @@ INPUTOBJECT ``: Identity Parameter + 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 3a02c908dc63a..8ac3cef4392e3 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 @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Invoke action checkMemberObjects -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -520,5 +510,6 @@ INPUTOBJECT ``: Identity Parameter + 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 dd875ee15209a..d3c316e391790 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 @@ -85,16 +85,6 @@ Because Microsoft 365 groups cannot contain other groups, membership in a Micros | Delegated (personal Microsoft account) | Not supported | | 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, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -537,5 +527,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8bdff898f2663..ebb3308549990 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 @@ -77,16 +77,6 @@ Invoke action checkMemberObjects | Delegated (personal Microsoft account) | Not supported | | 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, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -528,5 +518,6 @@ INPUTOBJECT ``: Identity Parameter + 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 dad18f77d2ce9..8cf10f96397f6 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -441,5 +431,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e62627de9adaf..9383d3307b3c4 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -441,5 +431,6 @@ INPUTOBJECT ``: Identity Parameter + 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 849db0aaf0058..01f1c2be0d715 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 @@ -57,13 +57,18 @@ Discover the latest schema definition for provisioning to an application. | Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Find-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -DirectoryDefinitionId $directoryDefinitionId +``` +This example shows how to use the Find-MgServicePrincipalSynchronizationJobSchemaDirectory Cmdlet. + + ## PARAMETERS ### -Break 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 65bb685f14871..2542fe9831fe3 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Discover the latest schema definition for provisioning to an application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -440,5 +430,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c3551281cc975..61a526437fdef 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 @@ -69,9 +69,9 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. | 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 -### EXAMPLE 1 - +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -81,9 +81,17 @@ DisplayName : Test App AppId : 39b09640-ec3e-44c9-b3de-f52db4e1cf66 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : Contoso.com +``` + +This example gets a list of all the applications. -### EXAMPLE 2 +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). +To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 2: Get an application by Id + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -Filter "AppId eq '39b09640-ec3e-44c9-b3de-f52db4e1cf66'" | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -92,9 +100,17 @@ DisplayName : Test App AppId : 39b09640-ec3e-44c9-b3de-f52db4e1cf66 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : Contoso.com +``` -### EXAMPLE 3 +This example gets the application by the specified Id. +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). + +To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 3: Get a count of all applications + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount @@ -105,9 +121,17 @@ bce20771-2a69-41e5-a0dd-125ac2fa2708 Example 3 App ffdf268a-2fe2-49e1-8cd7- dcaa0c3a-8dfa-4b47-bc04-0edbab42043a Principal-Test App bd38ad43-6c46-4cc6-b65c-a0db533a2a6f AzureADMyOrg Contoso.com f6b30057-7095-4e2c-89f8-224149f591b7 Testing App 00e80963-9bc0-4147-b9e0-2ba56093e7e6 AzureADandPersonalMicrosoftAccount Contoso.com fe4caed6-6182-4aca-b70b-b114c5334a8a New app 641992e9-d176-4aff-a3b6-a867b3ba48c4 AzureADandPersonalMicrosoftAccount Contoso.com +``` + +This example gets a list of all applications. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). -### EXAMPLE 4 +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). +To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 4: Use -Search to get all the applications whose display name contains 'Test' including a count of the returned applications + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount -Search '"DisplayName:Test"' @@ -115,9 +139,17 @@ Id DisplayName AppId -- ----------- ----- -------------- --------------- dcaa0c3a-8dfa-4b47-bc04-0edbab42043a Principal-Test App bd38ad43-6c46-4cc6-b65c-a0db533a2a6f AzureADMyOrg Contoso.com f6b30057-7095-4e2c-89f8-224149f591b7 Testing App 00e80963-9bc0-4147-b9e0-2ba56093e7e6 AzureADandPersonalMicrosoftAccount Contoso.com +``` + +This example returns all applications whose display name contains 'Test'. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). + +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). -### EXAMPLE 5 +To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. +### Example 5: Use -Filter to get all the applications with a display name that starts with 'New' including a count of the returned applications, with the results ordered by display name + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgApplication -ConsistencyLevel eventual -Count appCount -Filter "startsWith(DisplayName, 'New')" -OrderBy DisplayName @@ -125,6 +157,13 @@ Id DisplayName AppId -- ----------- ----- -------------- --------------- fe4caed6-6182-4aca-b70b-b114c5334a8a New app 641992e9-d176-4aff-a3b6-a867b3ba48c4 AzureADandPersonalMicrosoftAccount Contoso.com 0672d487-4c0c-475a-bf22-0e714f015597 New apps ced14895-14ac-4dcf-8b93-0779f60c000d AzureADandPersonalMicrosoftAccount Contoso.com +``` + +This example returns all applications whose display name starts with 'New'. The $appCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). + +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#application-resource-permissions). + +To consent to any of these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. ## PARAMETERS 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 9b2ea0d45fe4c..822cb2a6c9725 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 @@ -58,12 +58,17 @@ This API can be used to get agentIdentityBlueprint objects as well by their ID. | 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 -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications -Get-MgApplicationByAppId -Property "id,appId,displayName,requiredResourceAccess" +Get-MgApplicationByAppId -Property "id,appId,displayName,requiredResourceAccess" + +``` +This example will retrieve an application by its appid and only specific properties + ## PARAMETERS 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 00df1fcdb3c9e..c1dcb3e23aa4b 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 @@ -52,16 +52,6 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -422,5 +412,6 @@ BODYPARAMETER ``: Identity Parameter + 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 d8e497ab60747..60466cd33d7d9 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Supports $filter (/$count eq 0, /$count ne 0). Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -399,5 +389,6 @@ INPUTOBJECT ``: Identity Parameter + 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 3c7a6c5e6997d..479648a8d122a 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 @@ -51,13 +51,18 @@ For more information, see Use delta query to track changes in Microsoft Graph da | Application | Application.ReadWrite.OwnedBy, Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationDelta +``` +This example shows how to use the Get-MgApplicationDelta Cmdlet. + + ## PARAMETERS ### -All 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 a36101c6c26d7..b8f52b0490519 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 @@ -68,13 +68,18 @@ Read a directory extension definition represented by an extensionProperty object | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId +``` +This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. + + ## PARAMETERS ### -All 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 2fa2ad0ebe304..26b0a76701756 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 @@ -69,13 +69,18 @@ Read the properties and relationships of a federatedIdentityCredential object as | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | ## EXAMPLES +### Example: List federated identity credentials for an application -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId +``` +This example will### example: list federated identity credentials for an application + + ## PARAMETERS ### -All 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 ea00729571a7d..a3273fe4d0c9d 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 @@ -57,16 +57,6 @@ Read the properties and relationships of a federatedIdentityCredential object as | Delegated (personal Microsoft account) | Application.ReadWrite.All, | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -429,5 +419,6 @@ INPUTOBJECT ``: Identity Parameter + 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 78c4b93cb07ec..5efa624a2a4de 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get homeRealmDiscoveryPolicies from applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,6 +598,8 @@ INPUTOBJECT ``: Identity Parameter + + 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 6bdf82ea86b39..52a85585c3152 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + 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 693313fef4726..8de985891e375 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 @@ -76,16 +76,6 @@ This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -529,5 +519,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e18f02164e4a8..55708a4d59c6f 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 @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r- user\r- group\r- service principal\r- organizational contact\r- device\r- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -523,5 +513,6 @@ INPUTOBJECT ``: Identity Parameter + 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 356960d00d055..1a51fd3546d19 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 @@ -49,13 +49,18 @@ Retrieve a list of owners for an application that are directoryObject types. | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationOwner -ApplicationId $applicationId +``` +This example shows how to use the Get-MgApplicationOwner Cmdlet. + + ## PARAMETERS ### -All 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 bf83ffe80c949..13c5e30fa54a7 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 @@ -48,16 +48,6 @@ Retrieve a list of owners for an application that are directoryObject types. | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -490,5 +480,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 4355fa09eafa2..353c5169612cb 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 @@ -80,8 +80,9 @@ Acquire an OAuth access token to authorize the Microsoft Entra provisioning serv | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -95,6 +96,10 @@ $params = @{ Get-MgApplicationSynchronizationAccessToken -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the Get-MgApplicationSynchronizationAccessToken Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 92768fd4a5b43..f59cb81e48752 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 @@ -61,18 +61,28 @@ 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: Get application template -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId -### EXAMPLE 2 +``` +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" +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-MgApplicationTokenIssuancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationTokenIssuancePolicy.md index 8c87edb1a5831..a1926c3d5b9e7 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 @@ -49,13 +49,18 @@ List the tokenIssuancePolicy objects that are assigned to an application. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId +``` +This example shows how to use the Get-MgApplicationTokenIssuancePolicy Cmdlet. + + ## PARAMETERS ### -All 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 cde9f2d25992d..cea4cb506d734 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 @@ -48,16 +48,6 @@ List the tokenIssuancePolicy objects that are assigned to an application. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -468,5 +458,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 dd42865508829..ef6a924928542 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 @@ -51,13 +51,18 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId +``` +This example shows how to use the Get-MgApplicationTokenLifetimePolicy Cmdlet. + + ## PARAMETERS ### -All 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 361bd3159c437..fb3f23c8f39c4 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 @@ -50,16 +50,6 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -470,5 +460,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 349e816213823..451f831b17198 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 @@ -63,9 +63,9 @@ Represents the app roles granted to a group for an application. Supports $expand. ## EXAMPLES +### Example 1: Get appRoleAssignments granted to a group -### EXAMPLE 1 - +```powershell Get-MgGroupAppRoleAssignment -GroupId '2692d278-8323-4094-b286-e0ffce5e54a5' | Format-List @@ -79,6 +79,9 @@ PrincipalType : Group ResourceDisplayName : Common Data Service ResourceId : 93af1c70-e87f-45df-8780-8af2d7afd05e AdditionalProperties : {} +``` + +This example get all app role assignments granted to the specified group. ## 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 9f46b9200bb26..a1726811d1af7 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 @@ -69,9 +69,9 @@ This API can be used to get agentIdentityBlueprintPrincipal objects as well by t | 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 -### EXAMPLE 1 - +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal @@ -84,9 +84,17 @@ Id : 4297089a-3358-4bf5-92b0-a35fbdb2407c DisplayName : Microsoft Forms AppId : 67c93110-694e-4a54-b1af-d6cd2e3b12d7 SignInAudience : AzureADMultipleOrgs +``` + +This example retrieves all service principals from the directory. -### EXAMPLE 2 +To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). +To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 2: Get the service principal by display name + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -Filter "DisplayName eq 'Power BI Service'" | Format-List Id, DisplayName, AppId, SignInAudience @@ -95,9 +103,17 @@ Id : 9518fb8f-8d9e-4aae-be20-d398f9cc59ac DisplayName : Power BI Service AppId : 60dbf324-9702-41cc-a5fa-f8d19804b014 SignInAudience : AzureADMultipleOrgs +``` -### EXAMPLE 3 +This example gets the service principal by the display name. +To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). + +To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 3: Get a count of the service principals + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount @@ -107,9 +123,17 @@ Id DisplayName 0012ff3e-9c42-47f9-86a9-3a42aadf3d1d OneProfile Service b2cc270f-563e-4d8a-af47-f00963a71dcd AzureADMultipleOrgs Microsoft Services 0045f2ae-41d9-4373-98ac-3306fe51c9cf Dynamics Data Integration 2e49aa60-1bd3-43b6-8ab6-03ada3d9f08b AzureADMultipleOrgs Microsoft Services 020ada9b-60b7-436f-8f00-22b198c2996a O365SBRM Service 9d06afd9-66c9-49a6-b385-ea7509332b0b AzureADMultipleOrgs Microsoft Service +``` + +This example returns a list of all the service principals. $spCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). -### EXAMPLE 4 +To learn about other permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). +To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. + +### Example 4: Use -Filter and -Top to get five service principals with a display name that starts with 'a' including a count of returned objects + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount -Filter "startsWith(DisplayName, 'a')" -Top 5 @@ -120,9 +144,17 @@ Id DisplayName AppId 0e9adb48-e0aa-4aa5-a787-a79acc91f2ad Azure Multi-Factor Auth Connector 1f5530b3-261a-47a9-b357-ded261e17918 AzureADMultipleOrgs Microsoft Services 1b339d7a-b9ba-4328-ae3c-6f21276628c7 Azure Analysis Services 4ac7d521-0382-477b-b0f8-7e1d95f85ca2 AzureADMultipleOrgs Microsoft Services 1d322ee1-7cf7-442a-b480-d6d4bbe6ec54 App Protection c6e44401-4d0a-4542-ab22-ecd4c90d28d7 AzureADMultipleOrgs Microsoft Services +``` + +This example filters service principals whose display name starts with 'a' and continues to return the top 5. $spCount variable contains the count of the objects in the result before the *Top* filter. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). + +To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). -### EXAMPLE 5 +To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. +### Example 5: Use -Search to get service principals with display names that contain the letters 'Team' including a count of returned objects + +```powershell Connect-MgGraph -Scopes 'Application.Read.All' Get-MgServicePrincipal -ConsistencyLevel eventual -Count spCount -Search '"DisplayName:Team"' @@ -135,6 +167,13 @@ Id DisplayName 29b512aa-7269-4eea-8a61-5125684183cf Teams Calling Meeting Devices Services 00edd498-7c0c-4e68-859c-5a55d518c9c0 AzureADMultipleOrgs Microsoft Services 32cba72f-3403-4944-ada7-9173c8678247 App Studio for Microsoft Teams e1979c22-8b73-4aed-a4da-572cc4d0b832 AzureADMultipleOrgs Microsoft Services 349be45f-663d-428e-bdab-b4ac26393614 Microsoft Teams AuthSvc a164aee5-7d0a-46bb-9404-37421d58bdf7 AzureADMultipleOrgs Microsoft Services +``` + +This example returns all service principals whose display name contains the word 'team'. $spCount variable contains the count of the objects in the result. The advanced query requires the ConsistencyLevel parameter set to `eventual` and the Count parameter in the command. For more information about *ConsistencyLevel* and *Count*, see [Advanced query capabilities on Azure AD directory objects](/graph/aad-advanced-queries). + +To learn about the permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). + +To consent to these permissions run `Connect-MgGraph -Scopes Permission`. For example, `Connect-MgGraph -Scopes Application.Read.All, Application.ReadWrite.All`. ## PARAMETERS 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 d5052e4de1cfd..01814a119aab6 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 @@ -61,13 +61,18 @@ This cmdlet has the following aliases, Read the properties and relationships of an appRoleAssignment object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet. + + ## PARAMETERS ### -All 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 e6bd564de776c..2d0c12edd129e 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 @@ -61,9 +61,9 @@ This cmdlet has the following aliases, Read the properties and relationships of an appRoleAssignment object. ## EXAMPLES +### Example 1: Get all application role assignments for a service principal -### EXAMPLE 1 - +```powershell Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId '0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61' | Format-List AppRoleId : 00000000-0000-0000-0000-000000000000 @@ -91,6 +91,9 @@ ResourceId : 1c48f923-4fbb-4d37-b772-4d577eefec9e AdditionalProperties : {[@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da-b10d-14f1195d665f/directoryObjects/$/Microsof t.DirectoryServices.ServicePrincipal('0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61')/appRoleAssignments/PRLbC6e4yUyM wr0XutBvYZsr7FiAW3pIqP4F9944yBc]} +``` + +This example gets the application role assignments that have been granted to the specified service principal. ## 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 a6e154e4f58ec..5253db230c443 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 @@ -57,16 +57,6 @@ This API can be used to get agentIdentityBlueprintPrincipal objects as well by t | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AppId @@ -407,5 +397,6 @@ INPUTOBJECT ``: Identity Parameter + 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 86cb65298fbea..9bee0d6188b79 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 @@ -52,16 +52,6 @@ Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -422,5 +412,6 @@ BODYPARAMETER ``: Identity Parameter + + 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 888f18025524a..4ae90e3a11528 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 @@ -49,13 +49,18 @@ List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipa | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet. + + ## PARAMETERS ### -All 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 fbb83d2aab470..bd67cf95880b7 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 @@ -48,16 +48,6 @@ List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipa | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -467,5 +457,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 3c75bb17a7965..487e6e2d2d80d 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 @@ -84,16 +84,6 @@ If you get the DirectoryResultSizeLimitExceeded error code, use the List group t | Delegated (personal Microsoft account) | Not supported | | 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, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -536,5 +526,6 @@ INPUTOBJECT ``: Identity Parameter + 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 71f3dc4fd2b9a..cb24ee11776da 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 @@ -78,16 +78,6 @@ Only users and role-enabled groups can be members of directory roles. | Delegated (personal Microsoft account) | Not supported | | 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, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -530,5 +520,6 @@ INPUTOBJECT ``: Identity Parameter + 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 447a00a0312e8..0ebc3ad833899 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 @@ -67,13 +67,18 @@ Nullable. Supports $expand. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalMemberOf Cmdlet. + + ## PARAMETERS ### -All 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 a02f688378bb6..10123ed14b15d 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 @@ -65,13 +65,18 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet. + + ## PARAMETERS ### -All 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 d531179718a60..bdc8dc6cab25a 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 @@ -66,13 +66,18 @@ Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalOwnedObject Cmdlet. + + ## PARAMETERS ### -All 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 0396f8470f5bc..d8965da2a16af 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 @@ -53,14 +53,17 @@ Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne | 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 -### EXAMPLE 1 - +```powershell Get-MgServicePrincipalOwner -ServicePrincipalId '1c48f923-4fbb-4d37-b772-4d577eefec9e' Id DeletedDateTime -- --------------- 8a7c50d3-fcbd-4727-a889-8ab232dfea01 +``` + +This command lists the owners of the specified service principal. ## PARAMETERS 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 57239c2785ae9..0b4c81f73e4ba 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 @@ -52,16 +52,6 @@ Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -492,5 +482,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 63bb0d033de59..a5784c267d25a 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 @@ -62,13 +62,18 @@ Additionally you can view any targetDeviceGroups that have been configured for S | 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 -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. + + ## PARAMETERS ### -Break 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 index a6c6006efe1fa..9e459afb35b6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -70,13 +70,18 @@ Read the properties and relationships of a approvedClientApp object for the remo | 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 -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + ## PARAMETERS ### -All 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 5bdeee511a4eb..f3fbb97ac05af 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 @@ -70,13 +70,18 @@ Read the properties and relationships of a targetDeviceGroup object for the remo | 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 -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. + + ## PARAMETERS ### -All 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 d01b11b605373..43de82d3c25e1 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 @@ -79,16 +79,6 @@ Acquire an OAuth access token to authorize the Microsoft Entra provisioning serv | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -559,5 +549,6 @@ INPUTOBJECT ``: Identity Parameter + 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 0d2580afdfa88..df21812055ed5 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 @@ -69,13 +69,18 @@ Retrieve the existing synchronization job and its properties. | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -All 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 3c84697918fdf..5d8a38ed7c613 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 @@ -58,13 +58,18 @@ Retrieve the schema for a given synchronization job or template. | Application | CustomSecAttributeProvisioning.Read.All, Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.Read.All, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet. + + ## PARAMETERS ### -Break 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 808370a77f8ff..2f0e97288bbef 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 @@ -68,14 +68,6 @@ Preconfigured synchronization settings for a particular application. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -Import-Module Microsoft.Graph.Applications - -Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId $servicePrincipalId - ## PARAMETERS ### -All @@ -614,6 +606,8 @@ INPUTOBJECT ``: Identity Parameter + + 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 2319d809a7292..f24505f7aa8d5 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 @@ -40,16 +40,6 @@ This cmdlet has the following aliases, The tokenIssuancePolicies assigned to this service principal. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -502,5 +492,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 560e7e00ab726..db46956e09d19 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 @@ -51,13 +51,18 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTokenLifetimePolicy -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalTokenLifetimePolicy Cmdlet. + + ## PARAMETERS ### -All 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 474df756386e7..69d72bd645d86 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 @@ -50,16 +50,6 @@ Only one object is returned in the collection because only one tokenLifetimePoli | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -469,5 +459,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 e0067c9f6e26d..b0e5f627226ad 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 @@ -61,13 +61,18 @@ This cmdlet has the following aliases, Get transitiveMemberOf from servicePrincipals ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Get-MgServicePrincipalTransitiveMemberOf Cmdlet. + + ## PARAMETERS ### -All 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 eb87c27c7df2d..c14472f3a33a3 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 @@ -63,11 +63,11 @@ Represents the app roles a user is granted for an application. Supports $expand. ## EXAMPLES +### Example 1: Get assigned app roles -### EXAMPLE 1 - -Get-MgUserAppRoleAssignment -UserId "529827aa-d058-4821-a012-4de3ce093955" | - Format-List Id, AppRoleID, CreationTimeStamp, PrincipalDisplayName,PrincipalId, PrincipalType, ResourceDisplayName +```powershell + Get-MgUserAppRoleAssignment -UserId "529827aa-d058-4821-a012-4de3ce093955" | + Format-List Id, AppRoleID, CreationTimeStamp, PrincipalDisplayName,PrincipalId, PrincipalType, ResourceDisplayName Id : QQxVaKMYXkmqHc9ijBcbSFkvIqIpOSdOjXRyNBWe_zE AppRoleId : 00000000-0000-0000-0000-000000000000 @@ -82,6 +82,9 @@ PrincipalDisplayName : MOD Administrator PrincipalId : 529827aa-d058-4821-a012-4de3ce093955 PrincipalType : User ResourceDisplayName : dxprovisioning-worker-mfa +``` + +This command gets all the application roles that the selected user has been assigned. ## PARAMETERS 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 454e5c9c9f35b..41201e712163c 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 @@ -51,16 +51,6 @@ This cmdlet has the following aliases, List all operators supported in the scoping filters. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -551,5 +541,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c64d4dbf43564..81516ace766d4 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 @@ -59,16 +59,6 @@ List all operators supported in the scoping filters. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -559,5 +549,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c6b056cbce520..aea60a1df8dab 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 @@ -60,13 +60,18 @@ List all operators supported in the scoping filters. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator Cmdlet. + + ## PARAMETERS ### -Break 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 c88c0c1cd5d44..bbc4cea328863 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 @@ -59,16 +59,6 @@ List all operators supported in the scoping filters. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -558,5 +548,6 @@ INPUTOBJECT ``: Identity Parameter + 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 1189d4bb9e9f9..70f4c86534d78 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 @@ -51,16 +51,6 @@ This cmdlet has the following aliases, List all the functions currently supported in the attributeMappingSource. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -551,5 +541,6 @@ INPUTOBJECT ``: Identity Parameter + 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 7e5ae37699491..0338f827319d7 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 @@ -59,16 +59,6 @@ List all the functions currently supported in the attributeMappingSource. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -559,5 +549,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e77d6a5eef644..03b415756e29c 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 @@ -60,13 +60,18 @@ List all the functions currently supported in the attributeMappingSource. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Invoke-MgFunctionServicePrincipalSynchronizationJobSchema Cmdlet. + + ## PARAMETERS ### -Break 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 1bffaf4ac842f..16e64068d1ff8 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 @@ -59,16 +59,6 @@ List all the functions currently supported in the attributeMappingSource. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -558,5 +548,6 @@ INPUTOBJECT ``: Identity Parameter + 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 3170a6a9bd804..966b770c0dd48 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 @@ -80,8 +80,9 @@ For non-gallery apps, use an application template with one of the following IDs | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -91,6 +92,10 @@ $params = @{ Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId $applicationTemplateId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInstantiateApplicationTemplate Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 b52aac9e3e353..83562770c835e 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 @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -735,5 +725,6 @@ Not nullable. + 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 e2449340bd02b..dd47eb4126c57 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 @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -737,5 +727,6 @@ Not nullable. + 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 237dc0407002c..dc5a565ad31bd 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 @@ -85,16 +85,6 @@ For more information about expressions, see Writing Expressions for Attribute Ma | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -744,5 +734,6 @@ Not nullable. + 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 daebbce6be175..26c2ab77d7e7b 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 @@ -85,16 +85,6 @@ For more information about expressions, see Writing Expressions for Attribute Ma | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -744,5 +734,6 @@ Not nullable. + 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 01172ebd17958..7f7d6f6b5fe5d 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 @@ -87,9 +87,9 @@ This API can also create an agentIdentityBlueprint object when the @odata.type p | Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.Create, Application.ReadWrite.All, | ## EXAMPLES +### Example 1: Create a new application -### EXAMPLE 1 - +```powershell New-MgApplication -DisplayName 'New app' | Format-List Id, DisplayName, AppId, SignInAudience, PublisherDomain @@ -98,6 +98,9 @@ DisplayName : New app AppId : c678b75d-1012-4466-8655-1672192232b4 SignInAudience : AzureADandPersonalMicrosoftAccount PublisherDomain : M365B977454.onmicrosoft.com +``` + +This example creates a new application. ## PARAMETERS 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 ed1883f195465..115e9e3554cd3 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 @@ -81,8 +81,9 @@ Only one policy object can be assigned to an application or service principal. | Application | Application.Read.All, Policy.Read.ApplicationConfiguration, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -92,6 +93,10 @@ $params = @{ New-MgApplicationAppManagementPolicyByRef -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the New-MgApplicationAppManagementPolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 bfe6e5b2dbf32..c973f552d75be 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 @@ -81,8 +81,9 @@ Create a new directory extension definition, represented by an extensionProperty | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -97,6 +98,10 @@ $params = @{ New-MgApplicationExtensionProperty -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the New-MgApplicationExtensionProperty Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 9dd7fdcc5e80e..1385e3451b825 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 @@ -84,8 +84,9 @@ Maximum of 20 objects can be added to an application. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | ## EXAMPLES +### Example: Create a federated identity credential for an application -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -100,6 +101,10 @@ $params = @{ New-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -BodyParameter $params +``` +This example will### example: create a federated identity credential for an application + + ## PARAMETERS ### -AdditionalProperties 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 9127f09895dbd..c68f6b7cb59a0 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 @@ -78,14 +78,17 @@ Application owners can be individual users, the associated service principal, or | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Add an owner to an application -### EXAMPLE 1 - -$NewOwner = @{ - "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/{075b32dd-edb7-47cf-89ef-f3f733683a3f}" - } +```powershell + $NewOwner = @{ + "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/{075b32dd-edb7-47cf-89ef-f3f733683a3f}" + } New-MgApplicationOwnerByRef -ApplicationId 'f6b30057-7095-4e2c-89f8-224149f591b7' -BodyParameter $NewOwner +``` + +In this example, the first command defines the value for the $NewOwner variable. The second command adds the new owner to the specified application. ## PARAMETERS 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 47e2adcf5bdce..5adac2942cea3 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -582,5 +572,6 @@ Worker for synchronization a user between Workday and either Active Directory or + 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 532696061ebaa..bbebafe0352d0 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 @@ -77,8 +77,9 @@ Assign a tokenIssuancePolicy to an application. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -88,6 +89,10 @@ $params = @{ New-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the New-MgApplicationTokenIssuancePolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 6dab25acf6abc..5219a69d67a1e 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 @@ -79,8 +79,9 @@ You can have multiple tokenLifetimePolicy policies in a tenant but can assign on | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -90,6 +91,10 @@ $params = @{ New-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the New-MgApplicationTokenLifetimePolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 5fea58c5230f1..827ae41e80737 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 @@ -87,9 +87,9 @@ To grant an app role assignment to a group, you need three identifiers: Addition | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Assign an app role to a group -### EXAMPLE 1 - +```powershell $appRoleAssignment = @{ "principalId"= "f07a8d78-f18c-4c02-b339-9ebace025122" "resourceId"= "1c48f923-4fbb-4d37-b772-4d577eefec9e" @@ -110,6 +110,19 @@ ResourceDisplayName : Office 365 SharePoint Online ResourceId : 1c48f923-4fbb-4d37-b772-4d577eefec9e AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#groups('f07a8d78-f18c-4c02-b339-9ebace025122')/appRoleAssignments/$entity], [@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da- b10d-14f1195d665f/directoryObjects/$/Microsoft.DirectoryServices.Group('f07a8d78-f18c-4c02-b339-9ebace025122')/appRoleAssignments/eI168IzxAkyzOZ66zgJRIqVVeeA1CVFKmaBn-MGn0Bw]} +``` + +In this example, the first defines creates the `$appRoleAssignment` variable that defines the following: + +-`principalId`: The id of the group to which you are assigning the app role. + +-`resourceId`: The id of the resource servicePrincipal which has defined the app role. + +-`appRoleId`: The id of the appRole (defined on the resource service principal) to assign to the group. + +Learn more about the [AppRoleAssignment resource](/graph/api/resources/approleassignment?view=graph-rest-1.0). + +The second command adds the role to the specified group. ## PARAMETERS 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 344e94fd55728..26efa03ac765c 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 @@ -89,9 +89,9 @@ This API can also create an agentIdentityBlueprintPrincipal object from an agent | 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 -### EXAMPLE 1 - +```powershell $ServicePrincipalID=@{ "AppId" = "fc876dd1-6bcb-4304-b9b6-18ddf1526b62" } @@ -102,6 +102,9 @@ Id : ac483a5f-f291-4499-8a62-058547724579 DisplayName : Example App AppId : ffdf268a-2fe2-49e1-8cd7-66ecb61641ec SignInAudience : AzureADandPersonalMicrosoftAccount +``` + +In this example, the first command defines the service principal object in the variable $ServiceprincipalId. The second command creates a new service principal object. ## PARAMETERS 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 488ee2e4549db..48f56db594cf9 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 @@ -88,8 +88,9 @@ To grant an app role assignment, you need three identifiers: | Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -101,6 +102,10 @@ $params = @{ New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalAppRoleAssignedTo Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 1c3d5f1ee97e6..2bf7a1be1fddd 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 @@ -88,8 +88,9 @@ To grant an app role assignment to a client service principal, you need three id | Application | Application.Read.All, AppRoleAssignment.ReadWrite.All, Directory.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -101,6 +102,10 @@ $params = @{ New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalAppRoleAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 9c4f467774004..c6d3f4f14531b 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 @@ -78,8 +78,9 @@ Assign a claimsMappingPolicy to a servicePrincipal. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -89,6 +90,10 @@ $params = @{ New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 1a556f20342f6..70070a02e6f93 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 @@ -80,8 +80,9 @@ Classify a delegated permission by adding a delegatedPermissionClassification to | Application | Policy.ReadWrite.PermissionGrant, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -93,6 +94,10 @@ $params = @{ New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 fc66d1d104c75..9741eff781adc 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 @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Create new navigation property to endpoints for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -693,5 +683,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f9a35821a4bb5..f3f1560a349f4 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 @@ -78,8 +78,9 @@ Assign a homeRealmDiscoveryPolicy to a servicePrincipal. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -89,6 +90,10 @@ $params = @{ New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 c5f0a73561020..16e4ae2d8586e 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 @@ -79,14 +79,17 @@ Service principal owners can be users, the service principal itself, or other se | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Add an owner for a service principal -### EXAMPLE 1 - +```powershell $newOwner = @{ "@odata.id"= "https://graph.microsoft.com/v1.0/directoryObjects/8a7c50d3-fcbd-4727-a889-8ab232dfea01" } New-MgServicePrincipalOwnerByRef -ServicePrincipalId '1c48f923-4fbb-4d37-b772-4d577eefec9e' -BodyParameter $newOwner +``` + +In this example, the first command defines the value for the `$newOwner` variable in a hashtable. The second command adds the new owner to the specified service principal. ## PARAMETERS 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 index 0e5aef02e5c25..7828c130eb8fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -82,8 +82,9 @@ You can configure a maximum of 20 approved client apps. | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -94,6 +95,10 @@ $params = @{ New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 8a3387881f8e8..915637d80e79c 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 @@ -82,8 +82,9 @@ You can configure a maximum of 10 target device groups for the remoteDesktopSecu | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -95,6 +96,10 @@ $params = @{ New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 4441f237b68bd..57a04909e21f6 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 @@ -88,8 +88,9 @@ Call Start job to start synchronization. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -99,6 +100,10 @@ $params = @{ New-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 f9527db41210b..7c1e0699a34f6 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 @@ -84,8 +84,9 @@ The rate limit for this API is 5 requests per 10 seconds. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Provision users from Microsoft Entra ID to third-party applications -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -105,7 +106,12 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -### EXAMPLE 2 +``` +This example will provision users from microsoft entra id to third-party applications + +### Example 2: Sync on-demand from Active Directory to Microsoft Entra ID (Microsoft Entra Cloud Sync) + +```powershell Import-Module Microsoft.Graph.Applications @@ -125,7 +131,12 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params -### EXAMPLE 3 +``` +This example will sync on-demand from active directory to microsoft entra id (microsoft entra cloud sync) + +### Example 3: Provision a group and two of its members on demand + +```powershell Import-Module Microsoft.Graph.Applications @@ -157,6 +168,10 @@ $params = @{ New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params +``` +This example will provision a group and two of its members on demand + + ## PARAMETERS ### -AdditionalProperties 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 018696085aa5c..1d1340427a6b9 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 @@ -80,8 +80,9 @@ You can have multiple tokenLifetimePolicy policies in a tenant but can assign on | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -91,6 +92,10 @@ $params = @{ New-MgServicePrincipalTokenLifetimePolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalTokenLifetimePolicyByRef Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 894736391dc5c..1f0fa0bfa537e 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 @@ -81,9 +81,9 @@ Grant an app role assignment to an agentUser. | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Assign a user an application role -### EXAMPLE 1 - +```powershell New-MgUserAppRoleAssignment -Userid '8a7c50d3-fcbd-4727-a889-8ab232dfea01' ` -PrincipalId '8a7c50d3-fcbd-4727-a889-8ab232dfea01' ` -ResourceId '0873169c-9595-4664-9d02-499b49846ff1' ` @@ -98,6 +98,9 @@ PrincipalId : 8a7c50d3-fcbd-4727-a889-8ab232dfea01 PrincipalType : User ResourceDisplayName : dxprovisioning-analytics ResourceId : 0873169c-9595-4664-9d02-499b49846ff1 +``` + +This commands assigns the specified user a role in the specified application resource. ## PARAMETERS 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 ede6482dacb88..54836bf95d545 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 @@ -62,10 +62,13 @@ This API can also delete an agentIdentityBlueprint object by its ID. | Application | Application.ReadWrite.OwnedBy, AgentIdentityBlueprint.DeleteRestore.All, Application.ReadWrite.All, | ## EXAMPLES +### Example 1: Delete an application -### EXAMPLE 1 - +```powershell Remove-MgApplication -ApplicationId '1bc44759-ef10-46de-b199-40c077768fff' +``` + +This example deletes the specified application. ## PARAMETERS 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 7585e7a8fde68..efff28effe95d 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 @@ -51,13 +51,18 @@ Remove an appManagementPolicy policy object from an application or service princ When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef -ApplicationId $applicationId -AppManagementPolicyId $appManagementPolicyId +``` +This example shows how to use the Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 ebd13b8279e8c..fbc8e2932d99e 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 @@ -53,16 +53,6 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AppId @@ -445,5 +435,6 @@ INPUTOBJECT ``: Identity Parameter + 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 d85644831b35d..881843dc3a618 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 @@ -53,16 +53,6 @@ When deleted, apps are moved to a temporary container and can be restored within After that time, they are permanently deleted. This API can also delete an agentIdentityBlueprint object by its ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -445,5 +435,6 @@ INPUTOBJECT ``: Identity Parameter + 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 02bcc8f825adf..2125e031e2c0a 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 @@ -58,13 +58,18 @@ You can delete only directory extensions that aren't synced from on-premises act | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId +``` +This example shows how to use the Remove-MgApplicationExtensionProperty Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 dacfb055bae58..d147e3b87537a 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 @@ -57,13 +57,18 @@ Delete a federatedIdentityCredential object from an application. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId +``` +This example shows how to use the Remove-MgApplicationFederatedIdentityCredential Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 2c4347672c6e4..85ed76be9b3a6 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete a federatedIdentityCredential object from an application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -461,5 +451,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e2e223a32666c..f1638ae9ec47e 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 @@ -80,8 +80,9 @@ This method along with addKey can be used to automate rolling its expiring keys. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -92,6 +93,10 @@ $params = @{ Remove-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the Remove-MgApplicationKey Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 7c41d43ba7960..e827589fe31dc 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 @@ -58,13 +58,18 @@ As a recommended best practice, apps should have at least two owners. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationOwnerDirectoryObjectByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId +``` +This example shows how to use the Remove-MgApplicationOwnerDirectoryObjectByRef Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 2879c9b1b346f..4990f0e421a1a 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 @@ -77,8 +77,9 @@ Remove a password from an application. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -88,6 +89,10 @@ $params = @{ Remove-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the Remove-MgApplicationPassword Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 fba12fb71721c..bb92801291ad9 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 @@ -57,13 +57,18 @@ Remove a tokenIssuancePolicy from an application. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId +``` +This example shows how to use the Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 046bb9150a3d9..80967b10168b7 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 @@ -57,13 +57,18 @@ Remove a tokenLifetimePolicy from an application. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId +``` +This example shows how to use the Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef Cmdlet. + + ## PARAMETERS ### -ApplicationId 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 22b343f721f6a..c3c5281f1656c 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 @@ -56,13 +56,18 @@ Deletes an appRoleAssignment that a group has been granted. | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId +``` +This example shows how to use the Remove-MgGroupAppRoleAssignment Cmdlet. + + ## PARAMETERS ### -AppRoleAssignmentId 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 076c3f907df68..0452f63917eb8 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 @@ -58,13 +58,18 @@ This API can also delete an agentIdentityBlueprintPrincipal object by its ID. | Application | Application.ReadWrite.OwnedBy, AgentIdentity.DeleteRestore.All, AgentIdentityBlueprintPrincipal.DeleteRestore.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Remove-MgServicePrincipal Cmdlet. + + ## PARAMETERS ### -Break 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 e3fb0557df54f..2a9d4342b811c 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 @@ -57,13 +57,18 @@ Deletes an appRoleAssignment that a user, group, or client service principal has | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId +``` +This example shows how to use the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet. + + ## PARAMETERS ### -AppRoleAssignmentId 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 bc0a706f9582c..86995e0e1253b 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 @@ -61,10 +61,13 @@ Deleting an app role assignment for a service principal is equivalent to revokin | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Remove the application role assignment for a service principal -### EXAMPLE 1 - +```powershell Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId 'PRLbC6e4yUyMwr0XutBvYZsr7FiAW3pIqP4F9944yBc' -ServicePrincipalId '0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61' +``` + +This example removed the assignment of the specified service principal to the specified application role id. ## PARAMETERS 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 ce4a52ce8c6f9..a09d8c9dc1c4d 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete a servicePrincipal object. This API can also delete an agentIdentityBlueprintPrincipal object by its ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AppId @@ -441,5 +431,6 @@ INPUTOBJECT ``: Identity Parameter + 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 39f1b7d2aadc9..ee874d0902d84 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 @@ -58,13 +58,18 @@ Remove a claimsMappingPolicy from a servicePrincipal. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId +``` +This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef Cmdlet. + + ## PARAMETERS ### -Break 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 ae657ea939926..3069b63e1d2b9 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 @@ -57,13 +57,18 @@ Deletes a delegatedPermissionClassification which had previously been set for a | Application | Policy.ReadWrite.PermissionGrant, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId +``` +This example shows how to use the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet. + + ## PARAMETERS ### -Break 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 24ed775156c3d..141b6530e60bf 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property endpoints for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -459,5 +449,6 @@ INPUTOBJECT ``: Identity Parameter + 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 725f0661612d9..82b6626bcb585 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 @@ -58,13 +58,18 @@ Remove a homeRealmDiscoveryPolicy from a servicePrincipal. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId +``` +This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef Cmdlet. + + ## PARAMETERS ### -Break 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 6512e6c8a800d..ef2c3be4ff77d 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 @@ -79,8 +79,9 @@ As part of the request validation for this method, a proof of possession of an e | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -91,6 +92,10 @@ $params = @{ Remove-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Remove-MgServicePrincipalKey Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 2227115b4f8ad..8cd96356db059 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 @@ -59,8 +59,9 @@ As a recommended best practice, service principals should have at least two owne | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -70,6 +71,10 @@ $params = @{ Remove-MgServicePrincipalOwnerDirectoryObjectByRef -ServicePrincipalId $servicePrincipalId -DirectoryObjectId $directoryObjectId -BodyParameter $params +``` +This example shows how to use the Remove-MgServicePrincipalOwnerDirectoryObjectByRef Cmdlet. + + ## PARAMETERS ### -Break 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 99fe7393e5e8e..8e0fd2e20dcba 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 @@ -74,8 +74,9 @@ Remove a password from a servicePrincipal object. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -85,6 +86,10 @@ $params = @{ Remove-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Remove-MgServicePrincipalPassword Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 58ec75f1417da..6a35ce0a0de6d 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 @@ -58,13 +58,18 @@ Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disab | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId +``` +This example shows how to use the Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. + + ## PARAMETERS ### -Break 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 index ca4972333a75b..e4b0791756f87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -58,13 +58,18 @@ Delete approvedClientApp | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId +``` +This example shows how to use the Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + ## PARAMETERS ### -ApprovedClientAppId 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 890d1d18c74c9..bbf6ce1e965bf 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 @@ -59,16 +59,6 @@ Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RD | Delegated (personal Microsoft account) | Not supported | | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -472,5 +462,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a9f542067b291..366d0988f9579 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 @@ -59,13 +59,18 @@ Synchronized accounts are left as-is. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Remove-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -Break 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 219ff37940c5a..61828741d22b2 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Remove a tokenLifetimePolicy object from a service principal. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 715e0ad04760d..c63d6c52f4e29 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 @@ -58,13 +58,18 @@ Remove a tokenLifetimePolicy object from a service principal. | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.ReadWrite.ApplicationConfiguration, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef -ServicePrincipalId $servicePrincipalId -TokenLifetimePolicyId $tokenLifetimePolicyId +``` +This example shows how to use the Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef Cmdlet. + + ## PARAMETERS ### -Break 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 75342ccec76ee..8092e83d27630 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 @@ -56,12 +56,15 @@ Delete an appRoleAssignment that has been granted to a user. | Application | AppRoleAssignment.ReadWrite.All, | ## EXAMPLES +### Example 1: Remove a user's application role assignment -### EXAMPLE 1 - +```powershell Remove-MgUserAppRoleAssignment ` -AppRoleAssignmentID '01B8ir38J0eoiYqyMt_qAVDX9vgSB6xDur4zn5zOluM' ` -UserId '8a7c50d3-fcbd-4727-a889-8ab232dfea01' +``` + +This example removes the specified application role from the specified user. ## PARAMETERS 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 bd64a7da9cc7a..a81c504b42706 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 @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -579,5 +569,6 @@ INPUTOBJECT ``: Identity Parameter + 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 ed3408305e5ca..e2fc40777eabc 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 @@ -82,8 +82,9 @@ Optionally clears existing the synchronization state and previous errors. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -95,6 +96,10 @@ $params = @{ Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params +``` +This example shows how to use the Restart-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 0a37ba20e9e89..9d8fa6a56cdc4 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 @@ -57,16 +57,6 @@ Not nullable. | Delegated (personal Microsoft account) | Application.ReadWrite.All, | | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -501,5 +491,6 @@ INPUTOBJECT ``: Identity Parameter + 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 eb41bb682a8d0..94e02008624e5 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 @@ -72,8 +72,9 @@ Set the the verifiedPublisher on an agentIdentityBlueprint. For more information, including prerequisites to setting a verified publisher, see Publisher verification. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -83,6 +84,10 @@ $params = @{ Set-MgApplicationVerifiedPublisher -ApplicationId $applicationId -BodyParameter $params +``` +This example shows how to use the Set-MgApplicationVerifiedPublisher Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 3b3e5c858239c..bef7b37631d53 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 @@ -80,8 +80,9 @@ Provide credentials for establishing connectivity with the target system. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -108,6 +109,10 @@ $params = @{ Set-MgServicePrincipalSynchronizationSecret -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Set-MgServicePrincipalSynchronizationSecret Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 fcfa5847f9669..d0b3dacbd8294 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 @@ -55,16 +55,6 @@ If the job is in quarantine, the quarantine status is cleared. Don't create scripts to call the start job continuously while it's running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + 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 1a56ef51ac12a..cf55b3fb4559d 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 @@ -65,13 +65,18 @@ Use the start job only when the job is currently paused or in quarantine. | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Start-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Start-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -Break 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 25f33f21909d8..99cc1cf8e9f17 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job will continue from where it left off when a start call is made. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -442,5 +432,6 @@ INPUTOBJECT ``: Identity Parameter + 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 98892f9b9d776..5731739a3e53c 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 @@ -59,13 +59,18 @@ All the progress, including job state, is persisted, and the job will continue f | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications Suspend-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Suspend-MgServicePrincipalSynchronizationJob Cmdlet. + + ## PARAMETERS ### -Break 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 2cf38f53451b5..13642859a8f4b 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 @@ -67,16 +67,6 @@ If the properties fail multiple validations, only the first validation failure i However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -502,5 +492,6 @@ BODYPARAMETER ``: Identity Parameter + 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 fdd100d634361..cc1d18e54555b 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 @@ -67,16 +67,6 @@ If the properties fail multiple validations, only the first validation failure i However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -502,5 +492,6 @@ BODYPARAMETER ``: Identity Parameter + 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 343cf5be933c5..1f4119f9f84d7 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 @@ -137,12 +137,15 @@ This API can also create an agentIdentityBlueprint object if it doesn't exist, o | 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 -### EXAMPLE 1 - +```powershell Update-MgApplication ` -ApplicationId 'f6b30057-7095-4e2c-89f8-224149f591b7' ` -DisplayName 'Testing App' +``` + +This example updates the specified application's display name. ## PARAMETERS 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 ac7406158dc10..cebccb2b37145 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 @@ -128,16 +128,6 @@ This cmdlet has the following aliases, Create a new application object if it doesn't exist, or update the properties of an existing application object. This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AddIns @@ -3460,5 +3450,6 @@ WEB ``: webApplication + 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 fc19b976d4652..4003e569e2f20 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 @@ -129,8 +129,9 @@ Create a new application object if it doesn't exist, or update the properties of This API can also create an agentIdentityBlueprint object if it doesn't exist, or update properties of an existing agentIdentityBlueprint, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprint. ## EXAMPLES +### Example 1: Create a new application if it doesn't exist -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -140,7 +141,12 @@ $params = @{ Update-MgApplicationByUniqueName -BodyParameter $params -### EXAMPLE 2 +``` +This example will create a new application if it doesn't exist + +### Example 2: Update an existing application + +```powershell Import-Module Microsoft.Graph.Applications @@ -150,6 +156,10 @@ $params = @{ Update-MgApplicationByUniqueName -BodyParameter $params +``` +This example will update an existing application + + ## PARAMETERS ### -AddIns 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 23819df477517..e6864724ea79d 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property extensionProperties in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -778,5 +768,6 @@ INPUTOBJECT ``: Identity Parameter + 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 54d3522b6a26b..d54fe9ee050a9 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 @@ -84,9 +84,9 @@ Maximum of 20 objects can be added to an application. | Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -100,6 +100,11 @@ $params = @{ } Update-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -BodyParameter $params +``` +This example shows how to use the Update-MgApplicationFederatedIdentityCredential Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS 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 030200b9913f9..eaa0664b7b325 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 @@ -75,16 +75,6 @@ Create a new federatedIdentityCredential object for an application if it doesn't By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -739,5 +729,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f2dce81ec4d68..677d029a534ac 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 @@ -82,16 +82,6 @@ Update (override) the synchronization template associated with a given applicati | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1047,5 +1037,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 9defb55c893f6..44a48f51ca9f5 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -811,5 +801,6 @@ INPUTOBJECT ``: Identity Parameter + 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 66462e3c0c9a8..49c8276646a4c 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 @@ -140,15 +140,18 @@ This API can also create an agentIdentityBlueprintPrincipal object from an agent | 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 -### EXAMPLE 1 - +```powershell $ServicePrincipalUpdate =@{ "accountEnabled" = "true" "appRoleAssignmentRequired" = "true" } Update-MgServicePrincipal -ServicePrincipalId '000e4269-1923-4c8c-9c27-1206e114d421' -BodyParameter $ServicePrincipalUpdate +``` + +This is example, the first command defines the properties and their values in a hashtable under the variable $ServicePrincipalUpdate. The second command updates the specified service principal. ## PARAMETERS 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 d6236f467831b..f6987dec7ec02 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 @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignedTo in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -812,5 +802,6 @@ INPUTOBJECT ``: Identity Parameter + 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 30e777796332c..43a537c85ad5f 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 @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -812,5 +802,6 @@ INPUTOBJECT ``: Identity Parameter + 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 87a25bc1e8cd5..cb1bfc6d521d9 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 @@ -131,8 +131,9 @@ Create a new servicePrincipal object if it doesn't exist, or update the properti This API can also create an agentIdentityBlueprintPrincipal object from an agentIdentityBlueprint if it doesn't exist, or update properties of an existing agentIdentityBlueprintPrincipal, when the @odata.type property is set to #microsoft.graph.agentIdentityBlueprintPrincipal. ## EXAMPLES +### Example 1: Create a new servicePrincipal if it doesn't exist -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -142,7 +143,12 @@ $params = @{ Update-MgServicePrincipalByAppId -BodyParameter $params -### EXAMPLE 2 +``` +This example will create a new serviceprincipal if it doesn't exist + +### Example 2: Update an existing servicePrincipal + +```powershell Import-Module Microsoft.Graph.Applications @@ -152,6 +158,10 @@ $params = @{ Update-MgServicePrincipalByAppId -BodyParameter $params +``` +This example will update an existing serviceprincipal + + ## PARAMETERS ### -AccountEnabled 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 f9bdb0ca60926..4e899a9c67a32 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property delegatedPermissionClassifications in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -643,5 +633,6 @@ INPUTOBJECT ``: Identity Parameter + 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 9bcc53dface83..029deb46cdf49 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 @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property endpoints in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -721,5 +711,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8ac9fe984b6d3..902f758900338 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 @@ -84,8 +84,9 @@ Use this configuration to enable or disable the Microsoft Entra ID Remote Deskto | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -96,6 +97,10 @@ $params = @{ Update-MgServicePrincipalRemoteDesktopSecurityConfiguration -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 index 4883d085f64e3..9b80791745bc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -81,8 +81,9 @@ Update the properties of an approvedClientApp object for a remotedesktopsecurity | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -93,6 +94,10 @@ $params = @{ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp -ServicePrincipalId $servicePrincipalId -ApprovedClientAppId $approvedClientAppId -BodyParameter $params +``` +This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 56b67cb8634c5..94950022289e5 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 @@ -83,8 +83,9 @@ You can configure a maximum of 10 target device groups for the remoteDesktopSecu | Application | Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Applications @@ -95,6 +96,10 @@ $params = @{ Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup -ServicePrincipalId $servicePrincipalId -TargetDeviceGroupId $targetDeviceGroupId -BodyParameter $params +``` +This example shows how to use the Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup Cmdlet. + + ## PARAMETERS ### -AdditionalProperties 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 526174da4f717..8c84d7cfe8491 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 @@ -79,16 +79,6 @@ This method fully replaces the current schema with the one provided in the reque To update the schema of a template, make the call on the application object. You must be the owner of the application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -912,5 +902,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 0778aae5224c6..ebfbb4c29b86c 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property appRoleAssignments in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -811,5 +801,6 @@ INPUTOBJECT ``: Identity Parameter + From a57ba07e770e8b6f1e36ed9abcae9d1ab0ee8f87 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:37 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- .../Get-MgApplicationAppManagementPolicy.md | 11 +---------- .../Get-MgApplicationAppManagementPolicyByRef.md | 11 +---------- .../Get-MgApplicationAppManagementPolicyCount.md | 11 +---------- .../Get-MgApplicationCount.md | 11 +---------- .../Get-MgApplicationExtensionPropertyCount.md | 11 +---------- ...t-MgApplicationFederatedIdentityCredentialCount.md | 11 +---------- .../Get-MgApplicationHomeRealmDiscoveryPolicyCount.md | 11 +---------- .../Get-MgApplicationOwnerAsAppRoleAssignment.md | 11 +---------- .../Get-MgApplicationOwnerAsEndpoint.md | 11 +---------- .../Get-MgApplicationOwnerAsServicePrincipal.md | 11 +---------- .../Get-MgApplicationOwnerAsUser.md | 11 +---------- .../Get-MgApplicationOwnerCount.md | 11 +---------- .../Get-MgApplicationOwnerCountAsAppRoleAssignment.md | 11 +---------- .../Get-MgApplicationOwnerCountAsEndpoint.md | 11 +---------- .../Get-MgApplicationOwnerCountAsServicePrincipal.md | 11 +---------- .../Get-MgApplicationOwnerCountAsUser.md | 11 +---------- .../Get-MgApplicationSynchronization.md | 11 +---------- .../Get-MgApplicationSynchronizationJob.md | 11 +---------- .../Get-MgApplicationSynchronizationJobBulkUpload.md | 11 +---------- ...gApplicationSynchronizationJobBulkUploadContent.md | 11 +---------- .../Get-MgApplicationSynchronizationJobCount.md | 11 +---------- .../Get-MgApplicationSynchronizationJobSchema.md | 11 +---------- ...-MgApplicationSynchronizationJobSchemaDirectory.md | 11 +---------- ...plicationSynchronizationJobSchemaDirectoryCount.md | 11 +---------- .../Get-MgApplicationSynchronizationSecretCount.md | 11 +---------- .../Get-MgApplicationSynchronizationTemplate.md | 11 +---------- .../Get-MgApplicationSynchronizationTemplateCount.md | 11 +---------- .../Get-MgApplicationSynchronizationTemplateSchema.md | 11 +---------- ...plicationSynchronizationTemplateSchemaDirectory.md | 11 +---------- ...tionSynchronizationTemplateSchemaDirectoryCount.md | 11 +---------- .../Get-MgApplicationTemplateCount.md | 11 +---------- .../Get-MgApplicationTokenIssuancePolicyCount.md | 11 +---------- .../Get-MgApplicationTokenLifetimePolicyCount.md | 11 +---------- .../Get-MgGroupAppRoleAssignmentCount.md | 11 +---------- .../Get-MgServicePrincipalAppManagementPolicy.md | 11 +---------- .../Get-MgServicePrincipalAppManagementPolicyCount.md | 11 +---------- .../Get-MgServicePrincipalAppRoleAssignedToCount.md | 11 +---------- .../Get-MgServicePrincipalAppRoleAssignmentCount.md | 11 +---------- .../Get-MgServicePrincipalClaimMappingPolicyCount.md | 11 +---------- .../Get-MgServicePrincipalCount.md | 11 +---------- ...ServicePrincipalCreatedObjectAsServicePrincipal.md | 11 +---------- .../Get-MgServicePrincipalCreatedObjectCount.md | 11 +---------- ...cePrincipalCreatedObjectCountAsServicePrincipal.md | 11 +---------- ...PrincipalDelegatedPermissionClassificationCount.md | 11 +---------- .../Get-MgServicePrincipalEndpointCount.md | 11 +---------- ...MgServicePrincipalHomeRealmDiscoveryPolicyCount.md | 11 +---------- ...-MgServicePrincipalMemberOfAsAdministrativeUnit.md | 11 +---------- .../Get-MgServicePrincipalMemberOfAsDirectoryRole.md | 11 +---------- .../Get-MgServicePrincipalMemberOfAsGroup.md | 11 +---------- .../Get-MgServicePrincipalMemberOfCount.md | 11 +---------- ...rvicePrincipalMemberOfCountAsAdministrativeUnit.md | 11 +---------- ...-MgServicePrincipalMemberOfCountAsDirectoryRole.md | 11 +---------- .../Get-MgServicePrincipalMemberOfCountAsGroup.md | 11 +---------- ...et-MgServicePrincipalOauth2PermissionGrantCount.md | 11 +---------- ...gServicePrincipalOwnedObjectAsAppRoleAssignment.md | 11 +---------- .../Get-MgServicePrincipalOwnedObjectAsApplication.md | 11 +---------- .../Get-MgServicePrincipalOwnedObjectAsEndpoint.md | 11 +---------- .../Get-MgServicePrincipalOwnedObjectAsGroup.md | 11 +---------- ...MgServicePrincipalOwnedObjectAsServicePrincipal.md | 11 +---------- .../Get-MgServicePrincipalOwnedObjectCount.md | 11 +---------- ...icePrincipalOwnedObjectCountAsAppRoleAssignment.md | 11 +---------- ...MgServicePrincipalOwnedObjectCountAsApplication.md | 11 +---------- ...et-MgServicePrincipalOwnedObjectCountAsEndpoint.md | 11 +---------- .../Get-MgServicePrincipalOwnedObjectCountAsGroup.md | 11 +---------- ...vicePrincipalOwnedObjectCountAsServicePrincipal.md | 11 +---------- .../Get-MgServicePrincipalOwnerAsAppRoleAssignment.md | 11 +---------- .../Get-MgServicePrincipalOwnerAsEndpoint.md | 11 +---------- .../Get-MgServicePrincipalOwnerAsServicePrincipal.md | 11 +---------- .../Get-MgServicePrincipalOwnerAsUser.md | 11 +---------- .../Get-MgServicePrincipalOwnerCount.md | 11 +---------- ...MgServicePrincipalOwnerCountAsAppRoleAssignment.md | 11 +---------- .../Get-MgServicePrincipalOwnerCountAsEndpoint.md | 11 +---------- ...-MgServicePrincipalOwnerCountAsServicePrincipal.md | 11 +---------- .../Get-MgServicePrincipalOwnerCountAsUser.md | 11 +---------- ...ktopSecurityConfigurationApprovedClientAppCount.md | 11 +---------- ...ktopSecurityConfigurationTargetDeviceGroupCount.md | 11 +---------- .../Get-MgServicePrincipalSynchronization.md | 11 +---------- ...-MgServicePrincipalSynchronizationJobBulkUpload.md | 11 +---------- ...icePrincipalSynchronizationJobBulkUploadContent.md | 11 +---------- .../Get-MgServicePrincipalSynchronizationJobCount.md | 11 +---------- ...rvicePrincipalSynchronizationJobSchemaDirectory.md | 11 +---------- ...PrincipalSynchronizationJobSchemaDirectoryCount.md | 11 +---------- ...et-MgServicePrincipalSynchronizationSecretCount.md | 11 +---------- ...-MgServicePrincipalSynchronizationTemplateCount.md | 11 +---------- ...MgServicePrincipalSynchronizationTemplateSchema.md | 11 +---------- ...PrincipalSynchronizationTemplateSchemaDirectory.md | 11 +---------- ...ipalSynchronizationTemplateSchemaDirectoryCount.md | 11 +---------- .../Get-MgServicePrincipalTokenIssuancePolicyByRef.md | 11 +---------- .../Get-MgServicePrincipalTokenIssuancePolicyCount.md | 11 +---------- .../Get-MgServicePrincipalTokenLifetimePolicyCount.md | 11 +---------- ...PrincipalTransitiveMemberOfAsAdministrativeUnit.md | 11 +---------- ...rvicePrincipalTransitiveMemberOfAsDirectoryRole.md | 11 +---------- ...Get-MgServicePrincipalTransitiveMemberOfAsGroup.md | 11 +---------- .../Get-MgServicePrincipalTransitiveMemberOfCount.md | 11 +---------- ...ipalTransitiveMemberOfCountAsAdministrativeUnit.md | 11 +---------- ...PrincipalTransitiveMemberOfCountAsDirectoryRole.md | 11 +---------- ...gServicePrincipalTransitiveMemberOfCountAsGroup.md | 11 +---------- .../Get-MgUserAppRoleAssignmentCount.md | 11 +---------- .../New-MgApplicationSynchronizationJob.md | 11 +---------- ...-MgApplicationSynchronizationJobSchemaDirectory.md | 11 +---------- .../New-MgApplicationSynchronizationTemplate.md | 11 +---------- ...plicationSynchronizationTemplateSchemaDirectory.md | 11 +---------- ...rvicePrincipalSynchronizationJobSchemaDirectory.md | 11 +---------- .../New-MgServicePrincipalSynchronizationTemplate.md | 11 +---------- ...PrincipalSynchronizationTemplateSchemaDirectory.md | 11 +---------- .../New-MgServicePrincipalTokenIssuancePolicyByRef.md | 11 +---------- .../Remove-MgApplicationLogo.md | 11 +---------- .../Remove-MgApplicationSynchronization.md | 11 +---------- .../Remove-MgApplicationSynchronizationJob.md | 11 +---------- ...emove-MgApplicationSynchronizationJobBulkUpload.md | 11 +---------- ...gApplicationSynchronizationJobBulkUploadContent.md | 11 +---------- .../Remove-MgApplicationSynchronizationJobSchema.md | 11 +---------- ...-MgApplicationSynchronizationJobSchemaDirectory.md | 11 +---------- .../Remove-MgApplicationSynchronizationTemplate.md | 11 +---------- ...move-MgApplicationSynchronizationTemplateSchema.md | 11 +---------- ...plicationSynchronizationTemplateSchemaDirectory.md | 11 +---------- .../Remove-MgServicePrincipalSynchronization.md | 11 +---------- ...-MgServicePrincipalSynchronizationJobBulkUpload.md | 11 +---------- ...icePrincipalSynchronizationJobBulkUploadContent.md | 11 +---------- ...move-MgServicePrincipalSynchronizationJobSchema.md | 11 +---------- ...rvicePrincipalSynchronizationJobSchemaDirectory.md | 11 +---------- ...emove-MgServicePrincipalSynchronizationTemplate.md | 11 +---------- ...MgServicePrincipalSynchronizationTemplateSchema.md | 11 +---------- ...PrincipalSynchronizationTemplateSchemaDirectory.md | 11 +---------- ...move-MgServicePrincipalTokenIssuancePolicyByRef.md | 11 +---------- ...ipalTokenIssuancePolicyTokenIssuancePolicyByRef.md | 11 +---------- .../Set-MgApplicationSynchronization.md | 11 +---------- ...gApplicationSynchronizationJobBulkUploadContent.md | 11 +---------- .../Set-MgApplicationSynchronizationSecret.md | 11 +---------- .../Set-MgServicePrincipalSynchronization.md | 11 +---------- ...icePrincipalSynchronizationJobBulkUploadContent.md | 11 +---------- .../Update-MgApplicationSynchronizationJob.md | 11 +---------- ...pdate-MgApplicationSynchronizationJobBulkUpload.md | 11 +---------- .../Update-MgApplicationSynchronizationJobSchema.md | 11 +---------- ...-MgApplicationSynchronizationJobSchemaDirectory.md | 11 +---------- ...date-MgApplicationSynchronizationTemplateSchema.md | 11 +---------- ...plicationSynchronizationTemplateSchemaDirectory.md | 11 +---------- .../Update-MgServicePrincipalSynchronizationJob.md | 11 +---------- ...-MgServicePrincipalSynchronizationJobBulkUpload.md | 11 +---------- ...rvicePrincipalSynchronizationJobSchemaDirectory.md | 11 +---------- ...pdate-MgServicePrincipalSynchronizationTemplate.md | 11 +---------- ...MgServicePrincipalSynchronizationTemplateSchema.md | 11 +---------- ...PrincipalSynchronizationTemplateSchemaDirectory.md | 11 +---------- 143 files changed, 143 insertions(+), 1430 deletions(-) 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 d0177c5cd27ef..8f16956e058fc 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 @@ -40,16 +40,6 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -503,5 +493,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 d49123dcfdb27..50bac5afb7421 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 @@ -40,16 +40,6 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -459,5 +449,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 05fb20fa4a178..598395458147c 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 452984e759dc9..6453a34dfd8fc 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 @@ -46,16 +46,6 @@ Get the number of the resource | 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 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -335,5 +325,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 adf80725a40d4..0d5f83069676d 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Application.Read.All, Application.ReadWrite.All, | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 00289675aab96..64731c0689c34 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Application.ReadWrite.All, | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + 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 69d5218edaba4..dff754cc19182 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + 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 4eb03dcfed3d2..9fcbfbff05c94 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 ad44fef01b937..96a130d63ca6b 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 bdeb03d7144b8..f5fbb015a9297 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 ea839b71a4287..ab8b489f5d35a 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.user -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 2f01431297986..d93a39e68f4f3 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -426,5 +416,6 @@ INPUTOBJECT ``: Identity Parameter + 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 3098b60276361..9f70481039444 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + 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 2f6b16d46dae1..c39423758db4b 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + 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 aabb2d2c566ee..1f7302de9533e 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e2b59cdd4daa8..59f09f73ffb34 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + 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 cfaf55fb29eea..4b30af06aec6b 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + 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 7e2a754167e0a..70cb9a90c2a77 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -609,5 +599,6 @@ INPUTOBJECT ``: Identity Parameter + 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 03b54c17b82bb..0f00275d482ce 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -420,5 +410,6 @@ INPUTOBJECT ``: Identity Parameter + 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 727f671bbe9ac..5e9bd9a8550f7 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -417,5 +407,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e6679de65b9e8..46f719a117c0d 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 2f7180fff12ec..edc3d94a98857 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The synchronization schema configured for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -420,5 +410,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c92694cc63146..d64f009eee688 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -637,5 +627,6 @@ INPUTOBJECT ``: Identity Parameter + 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 ebcef3e210f6a..048c0e03c38c2 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 24b461791e2a8..988ea5916a1ba 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 d40c2753085a6..595f3d495ff61 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 @@ -68,16 +68,6 @@ Preconfigured synchronization settings for a particular application. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -617,5 +607,6 @@ INPUTOBJECT ``: Identity Parameter + 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 4b7ef21c0b6f2..aba927f25e6d6 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + 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 100340e38b007..361e756e007bc 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 @@ -57,16 +57,6 @@ Default synchronization schema for the jobs based on this template. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -428,5 +418,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8300f3cc66b10..6b1db23931da8 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -637,5 +627,6 @@ INPUTOBJECT ``: Identity Parameter + 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 99c97c2f76fc3..9c5dfab9a0793 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 0fbf211a91bb7..b3b6b113e7b0c 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 @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 ded859cd8d154..75ff8f6bb5e48 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 74b30abfe8df9..4f1d6a8bd384b 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 5014529776a2b..6af8c3539a07c 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -425,5 +415,6 @@ INPUTOBJECT ``: Identity Parameter + 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 81db0a958509e..72aaae09ef01c 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The appManagementPolicy applied to this application. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 fa38618ec75e2..7437a0d8d6f27 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c44c3ba77ed61..72049f7cb50b5 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -402,5 +392,6 @@ INPUTOBJECT ``: Identity Parameter + 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 d0fcbc4ea88bc..7ede81446d4e3 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -426,5 +416,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8ee8a186f97ec..dbef4eebcbdcd 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 1b71c820dfe7e..634658f278fbb 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 @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, AgentIdentity.Read.All, AgentIdentityBlueprintPrincipal.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -335,5 +325,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 1909bfe06da57..bdb154bd86046 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 603f32a56a349..7aa06ea91c8b8 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -402,5 +392,6 @@ INPUTOBJECT ``: Identity Parameter + 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 5fabc03d88a71..a213b4e20c1fa 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f79c45788c6cb..59e6b6fdb0970 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.OwnedBy, Directory.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f782097b9376c..62688bd896680 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -394,5 +384,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a5fa5e1523968..8db2eecbd365b 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 7d8adedf8a545..7049b6d91eba4 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 b4169308d1d3c..d03212c8a7b26 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 367e82021bd86..dbdf3fcd5418f 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -630,5 +620,6 @@ INPUTOBJECT ``: Identity Parameter + 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 7c8f80c059c96..a81434067aff0 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -426,5 +416,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a297692f807d7..292e1f5b9e82e 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f3398033c3274..f99a973baa62d 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e75d19d4a8990..b8568747e52e7 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 6bf45024ecedc..fba72f47bfe90 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Directory.Read.All, DelegatedPermissionGrant.ReadWrite.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e338d766467e5..73b4e467d5aca 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 1fd80154c6a51..a4097661958f7 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.application -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e61989a3e3e43..3faee23167a5f 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 2d0e434fa6910..f793fd954d525 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 db621792599a3..b1786e7878004 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -608,5 +598,6 @@ INPUTOBJECT ``: Identity Parameter + 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 496fc8c0a158e..eae877dd6b989 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 @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -402,5 +392,6 @@ INPUTOBJECT ``: Identity Parameter + 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 9e0ac409ee0d9..e9780d942826a 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + 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 1ab77a07b262b..509cec9c62723 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f00cb43470279..aeee9fada65cc 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 0eef6538be396..28e9db13ac655 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 eae48450bde6d..27d476b3e2816 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + 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 0ac005fbe887e..895f04f016efb 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c6f70a1a1b93c..9e876ef48f031 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -630,5 +620,6 @@ INPUTOBJECT ``: Identity Parameter + 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 fe99a74b109db..6f9d4fb6f1f9a 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 db33743776e57..cdbb3d7e9b0ec 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 @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.user -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -630,5 +620,6 @@ INPUTOBJECT ``: Identity Parameter + 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 5a0456bd710ee..49b58b896a969 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -426,5 +416,6 @@ INPUTOBJECT ``: Identity Parameter + 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 88af1d51c88d2..1b3e0ba7df7ac 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 29621398ae5d1..23fffa0cf2074 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 6ed0dd4fc3c2b..1be9bef9b11d7 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f9031bea49634..b63c1cf5511d1 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 index 8b1a24c2b113b..28bb461762ba1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -57,16 +57,6 @@ Get the number of the resource | 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 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + 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 30712d5617140..02074035a0315 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application-RemoteDesktopConfig.ReadWrite.All, Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a65a3ffc27500..3ac4cf53ac350 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + 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 efece3dcc5193..6208832561afa 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c9b456bb989ba..cfcbccbc6aa9f 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -416,5 +406,6 @@ INPUTOBJECT ``: Identity Parameter + 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 661a1b2c600c8..0e628ba6dd3f4 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 e27f5e333934f..4e9483c945c56 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -636,5 +626,6 @@ INPUTOBJECT ``: Identity Parameter + 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 3142926f9a795..5d497a1d72c4d 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -417,5 +407,6 @@ INPUTOBJECT ``: Identity Parameter + 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 4e86b0ddf25cb..9505fb621ee81 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 b96ce764c3658..f3c3a78b13fa9 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 c92df213bf2ff..7aed3bf002706 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 @@ -57,16 +57,6 @@ Default synchronization schema for the jobs based on this template. | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.Read.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -427,5 +417,6 @@ INPUTOBJECT ``: Identity Parameter + 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 864a8c54f16ec..bc54ad94bb870 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Contains the collection of directories and all of their objects. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -636,5 +626,6 @@ INPUTOBJECT ``: Identity Parameter + 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 94c4b6dc5ee99..86f64aea33d78 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -417,5 +407,6 @@ INPUTOBJECT ``: Identity Parameter + 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 5936d78bdc3f1..4655e47225fd1 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 @@ -40,16 +40,6 @@ This cmdlet has the following aliases, The tokenIssuancePolicies assigned to this service principal. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -458,5 +448,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + 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 d6e969894573b..16dce680906f1 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + 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 b4130ce6006a3..df71700306fea 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -403,5 +393,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a7c2ec15d5e43..b28695fdfe1fa 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 52f6730c0aeb2..86da6cc54f755 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 d4e2fd92f7491..a7284f0be180a 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 @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Get the item of type microsoft.graph.directoryObject as microsoft.graph.group -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f2673e4c2da28..96a2d8f81093b 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 @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Application.Read.All, Application.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -426,5 +416,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8e23056c08622..0acafc6f253fc 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 4932baf7e350b..ca7e333682ab6 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 9e51992e35d7f..83d6f4c96c399 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + 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 85ce7eb7e3dee..b5fb28e46d96c 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 @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Directory.Read.All, AppRoleAssignment.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -425,5 +415,6 @@ INPUTOBJECT ``: Identity Parameter + 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 148ae6156a2e5..a8fe94b0cbd48 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 @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to jobs for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1139,5 +1129,6 @@ Some settings are inherited from the template. + 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 f34abc5a3050c..ce431cecad763 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to directories for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -809,5 +799,6 @@ Not nullable. + 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 7706da77f32e8..1eddb6546e2a6 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to templates for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1010,5 +1000,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 cac502a9f17c0..d970b5c173da3 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to directories for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -809,5 +799,6 @@ Not nullable. + 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 edec412ea8346..5dacedfd88371 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to directories for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -808,5 +798,6 @@ Not nullable. + 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 d3433c280b1b2..5e39e76c8d5dc 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to templates for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1010,5 +1000,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 3018d6eddac7c..7ee33da24c0c5 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to directories for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -808,5 +798,6 @@ Not nullable. + 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 8a47e8e209336..9808c92544ed8 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 @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property ref to tokenIssuancePolicies for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -543,5 +533,6 @@ INPUTOBJECT ``: Identity Parameter + 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 7919c21cb9122..0b4ce90d305bc 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The main logo for the application. Not nullable. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -441,5 +431,6 @@ INPUTOBJECT ``: Identity Parameter + 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 28e3ab8872584..a1ddd401229c3 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property synchronization for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -439,5 +429,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a626df9af2543..3a6412be965c5 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property jobs for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 b409627e158cc..64fe108a5f27d 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property bulkUpload for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -461,5 +451,6 @@ INPUTOBJECT ``: Identity Parameter + 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 bd86cee530921..8d3c65d79cc6a 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -461,5 +451,6 @@ INPUTOBJECT ``: Identity Parameter + 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 53a39916b485c..873ab3474b1e4 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property schema for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 d4b4593c4e55a..b542c9ae819f1 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property directories for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -482,5 +472,6 @@ INPUTOBJECT ``: Identity Parameter + 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 cc4c0385cb283..9f90b8e4d6863 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property templates for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -461,5 +451,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f312aae65625e..a1b2b6b93ce65 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 @@ -56,16 +56,6 @@ Delete navigation property schema for applications | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + 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 553ad3ce1c56f..dcf8f21828403 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property directories for applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -482,5 +472,6 @@ INPUTOBJECT ``: Identity Parameter + 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 345aca3bbe278..e46303c05f85d 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property synchronization for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -438,5 +428,6 @@ INPUTOBJECT ``: Identity Parameter + 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 03cc211ff3d2f..2467712b8dde9 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property bulkUpload for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 44ba5e0fa3929..5144268fc1a0d 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 f5a4f6cdd99e7..6d0719bc216f2 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 @@ -56,16 +56,6 @@ Delete navigation property schema for servicePrincipals | Delegated (personal Microsoft account) | Not supported | | Application | Application.ReadWrite.OwnedBy, CustomSecAttributeProvisioning.ReadWrite.All, Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -468,5 +458,6 @@ INPUTOBJECT ``: Identity Parameter + 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 248f5f5665609..1feebae122d5d 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property directories for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -481,5 +471,6 @@ INPUTOBJECT ``: Identity Parameter + 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 4eacbb5c7f6e5..13267ab893b9d 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property templates for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 df360aaeffdce..0621d8b8b3f6c 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property schema for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + 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 693e69e27db74..32e7d5bd68199 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 @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property directories for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -481,5 +471,6 @@ INPUTOBJECT ``: Identity Parameter + 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 8321071b52e2b..98608dee2000f 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 @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete ref of navigation property tokenIssuancePolicies for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -459,5 +449,6 @@ INPUTOBJECT ``: Identity Parameter + 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 44e8e3e7244bf..73ade9c56423f 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete ref of navigation property tokenIssuancePolicies for servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -461,5 +451,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a4bf357915ff5..ab37e5ae30334 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 @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Update the navigation property synchronization in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1233,5 +1223,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 2cc44a66ff17f..12f754d12694b 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ApplicationId @@ -514,5 +504,6 @@ INPUTOBJECT ``: Identity Parameter + 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 a421b5a999321..c7fdbed6aed4a 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 @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update property secrets value. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -530,5 +520,6 @@ VALUE : . + 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 00e812230852f..4557c835062b4 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property synchronization in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1233,5 +1223,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 be965f64d8e99..b65e79222a6da 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 @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The bulk upload operation for the job. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -513,5 +503,6 @@ INPUTOBJECT ``: Identity Parameter + 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 053a08510c4df..b02c4f6107e73 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 @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property jobs in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1166,5 +1156,6 @@ Some settings are inherited from the template. + 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 01ab006adb695..2a99963263aee 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 @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Update the navigation property bulkUpload in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -543,5 +533,6 @@ INPUTOBJECT ``: Identity Parameter + 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 54221d9501e89..9a77693f5cb39 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property schema in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -906,5 +896,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 f5e6278ec97ba..c497b67cbf5df 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 @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property directories in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -837,5 +827,6 @@ Not nullable. + 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 74be64065b7e2..8f137ac2833b5 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property schema in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -906,5 +896,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 6103d9ff49fad..9b59efdaae7d2 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 @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property directories in applications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -838,5 +828,6 @@ Not nullable. + 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 afb6477cb2186..89adb4342655c 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 @@ -84,16 +84,6 @@ Update the navigation property jobs in servicePrincipals | Delegated (personal Microsoft account) | Not supported | | Application | Synchronization.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1174,5 +1164,6 @@ Some settings are inherited from the template. + 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 7735997fdd3b1..9cb4990a0c987 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 @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Update the navigation property bulkUpload in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -542,5 +532,6 @@ INPUTOBJECT ``: Identity Parameter + 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 84fb78ed6b5b3..4c694da0ba6c9 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 @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property directories in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -836,5 +826,6 @@ Not nullable. + 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 eed099e964b34..5da4d24e83d14 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 @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property templates in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1038,5 +1028,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 3725227ec386f..0e94033cf9a83 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 @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property schema in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -905,5 +895,6 @@ Must match one of the directory definitions in synchronizationSchema. + 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 8c0789dc724bc..4c07c8e2de337 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 @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property directories in servicePrincipals -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -837,5 +827,6 @@ Not nullable. + From 53e8b05468eef9cf7aef37e34976f6e89df51585 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:44 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- .../Add-MgApplicationKey.md | 5 ++--- .../Add-MgApplicationPassword.md | 2 +- .../Add-MgServicePrincipalKey.md | 5 ++--- .../Add-MgServicePrincipalPassword.md | 2 +- .../Add-MgServicePrincipalTokenSigningCertificate.md | 6 +++--- .../Confirm-MgApplicationMemberGroup.md | 4 ++-- .../Confirm-MgApplicationMemberObject.md | 4 ++-- .../Confirm-MgServicePrincipalMemberGroup.md | 4 ++-- .../Confirm-MgServicePrincipalMemberObject.md | 4 ++-- .../Get-MgApplicationById.md | 6 +++--- .../Get-MgApplicationMemberGroup.md | 4 ++-- .../Get-MgApplicationMemberObject.md | 4 ++-- .../Get-MgApplicationSynchronizationAccessToken.md | 4 ++-- .../Get-MgServicePrincipalById.md | 6 +++--- .../Get-MgServicePrincipalMemberGroup.md | 4 ++-- .../Get-MgServicePrincipalMemberObject.md | 4 ++-- ...t-MgServicePrincipalSynchronizationAccessToken.md | 4 ++-- .../Invoke-MgInstantiateApplicationTemplate.md | 6 +++--- ...eApplicationSynchronizationJobSchemaExpression.md | 4 ++-- ...icationSynchronizationTemplateSchemaExpression.md | 4 ++-- ...icePrincipalSynchronizationJobSchemaExpression.md | 4 ++-- ...incipalSynchronizationTemplateSchemaExpression.md | 4 ++-- .../New-MgApplication.md | 12 ++++++------ .../New-MgApplicationAppManagementPolicyByRef.md | 2 +- .../New-MgApplicationOwnerByRef.md | 2 +- .../New-MgApplicationSynchronizationJobOnDemand.md | 4 ++-- .../New-MgApplicationTokenIssuancePolicyByRef.md | 2 +- .../New-MgApplicationTokenLifetimePolicyByRef.md | 2 +- .../New-MgServicePrincipal.md | 8 ++++---- .../New-MgServicePrincipalClaimMappingPolicyByRef.md | 2 +- .../New-MgServicePrincipalEndpoint.md | 10 +++++----- ...gServicePrincipalHomeRealmDiscoveryPolicyByRef.md | 2 +- .../New-MgServicePrincipalOwnerByRef.md | 2 +- ...w-MgServicePrincipalSynchronizationJobOnDemand.md | 4 ++-- ...New-MgServicePrincipalTokenIssuancePolicyByRef.md | 2 +- ...New-MgServicePrincipalTokenLifetimePolicyByRef.md | 2 +- .../Remove-MgApplicationKey.md | 7 +++---- .../Remove-MgApplicationPassword.md | 4 ++-- .../Remove-MgServicePrincipalKey.md | 7 +++---- .../Remove-MgServicePrincipalPassword.md | 4 ++-- .../Restart-MgApplicationSynchronizationJob.md | 2 +- .../Restart-MgServicePrincipalSynchronizationJob.md | 2 +- .../Set-MgApplicationLogo.md | 2 +- ...ApplicationSynchronizationJobBulkUploadContent.md | 2 +- .../Set-MgApplicationSynchronizationSecret.md | 4 ++-- .../Set-MgApplicationVerifiedPublisher.md | 4 ++-- ...cePrincipalSynchronizationJobBulkUploadContent.md | 2 +- .../Set-MgServicePrincipalSynchronizationSecret.md | 4 ++-- .../Test-MgApplicationProperty.md | 10 +++++----- ...Test-MgApplicationSynchronizationJobCredential.md | 10 +++++----- .../Test-MgServicePrincipalProperty.md | 10 +++++----- ...MgServicePrincipalSynchronizationJobCredential.md | 10 +++++----- .../Update-MgApplication.md | 12 ++++++------ .../Update-MgApplicationByAppId.md | 12 ++++++------ .../Update-MgApplicationByUniqueName.md | 12 ++++++------ .../Update-MgServicePrincipal.md | 8 ++++---- .../Update-MgServicePrincipalByAppId.md | 8 ++++---- .../Update-MgServicePrincipalEndpoint.md | 10 +++++----- 58 files changed, 146 insertions(+), 150 deletions(-) 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 5018b66ae36a6..5c971d2db9898 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 @@ -192,7 +192,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -408,9 +408,8 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Proof -. + ```yaml Type: System.String 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 bc85fa11d5ebb..b751d231581e9 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 @@ -203,7 +203,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 995102ab2de16..83f1e5cbdbe30 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 @@ -161,7 +161,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -377,9 +377,8 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Proof -. + ```yaml Type: System.String 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 587390ef4e32d..b6a171c17d13e 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 @@ -124,7 +124,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 2ca91e91d4ad4..1c557bed6aa5f 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 @@ -140,7 +140,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -211,7 +211,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String @@ -238,7 +238,7 @@ HelpMessage: '' ### -EndDateTime -. + ```yaml Type: System.DateTime 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 d28962d4ba3d1..020adda8fca9a 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 @@ -135,7 +135,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -206,7 +206,7 @@ HelpMessage: '' ### -GroupIds -. + ```yaml Type: System.String[] 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 8ac3cef4392e3..f2d8398a5ca85 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 @@ -127,7 +127,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -261,7 +261,7 @@ HelpMessage: '' ### -Ids -. + ```yaml Type: System.String[] 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 d3c316e391790..dc9de2aeba5b7 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 @@ -116,7 +116,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -187,7 +187,7 @@ HelpMessage: '' ### -GroupIds -. + ```yaml Type: System.String[] 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 ebb3308549990..3f89be3e9b614 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 @@ -108,7 +108,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -242,7 +242,7 @@ HelpMessage: '' ### -Ids -. + ```yaml Type: System.String[] 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 c1dcb3e23aa4b..20aad573e8ca7 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 @@ -77,7 +77,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +205,7 @@ HelpMessage: '' ### -Ids -. + ```yaml Type: System.String[] @@ -311,7 +311,7 @@ HelpMessage: '' ### -Types -. + ```yaml Type: System.String[] 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 8de985891e375..a4ab7cd2587e1 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 @@ -135,7 +135,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -382,7 +382,7 @@ HelpMessage: '' ### -SecurityEnabledOnly -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 55708a4d59c6f..39c41afd59e51 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 @@ -129,7 +129,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -376,7 +376,7 @@ HelpMessage: '' ### -SecurityEnabledOnly -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 353c5169612cb..fc8ba090edbb3 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 @@ -159,7 +159,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -230,7 +230,7 @@ HelpMessage: '' ### -Credentials -. + To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml 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 9bee0d6188b79..63618acb9d543 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 @@ -77,7 +77,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +205,7 @@ HelpMessage: '' ### -Ids -. + ```yaml Type: System.String[] @@ -311,7 +311,7 @@ HelpMessage: '' ### -Types -. + ```yaml Type: System.String[] 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 487e6e2d2d80d..0171653d12d33 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 @@ -115,7 +115,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -362,7 +362,7 @@ HelpMessage: '' ### -SecurityEnabledOnly -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 cb24ee11776da..ad3f09c39167c 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 @@ -109,7 +109,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -356,7 +356,7 @@ HelpMessage: '' ### -SecurityEnabledOnly -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 43de82d3c25e1..774992415456b 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 @@ -110,7 +110,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -181,7 +181,7 @@ HelpMessage: '' ### -Credentials -. + To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml 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 966b770c0dd48..9c85f2e4a2642 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 @@ -154,7 +154,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -225,7 +225,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String @@ -428,7 +428,7 @@ HelpMessage: '' ### -ServiceManagementReference -. + ```yaml Type: System.String 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 83562770c835e..f819fb800a93b 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 @@ -134,7 +134,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +205,7 @@ HelpMessage: '' ### -Expression -. + ```yaml Type: System.String 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 dd47eb4126c57..6001020394a53 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 @@ -136,7 +136,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +207,7 @@ HelpMessage: '' ### -Expression -. + ```yaml Type: System.String 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 dc5a565ad31bd..fd7e358eeabf9 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 @@ -116,7 +116,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -187,7 +187,7 @@ HelpMessage: '' ### -Expression -. + ```yaml Type: System.String 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 26c2ab77d7e7b..79156886831b5 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 @@ -116,7 +116,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -187,7 +187,7 @@ HelpMessage: '' ### -Expression -. + ```yaml Type: System.String 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 7f7d6f6b5fe5d..a769aca4da55d 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 @@ -447,7 +447,7 @@ HelpMessage: '' ### -DefaultRedirectUri -. + ```yaml Type: System.String @@ -649,7 +649,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies -. + To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -804,7 +804,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -964,7 +964,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1443,7 +1443,7 @@ HelpMessage: '' ### -TokenIssuancePolicies -. + To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1465,7 +1465,7 @@ HelpMessage: '' ### -TokenLifetimePolicies -. + To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml 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 115e9e3554cd3..f14c5a533ee08 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 @@ -156,7 +156,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 c68f6b7cb59a0..f6518d3220b91 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 @@ -149,7 +149,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 5adac2942cea3..dcb90a292c07e 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 @@ -132,7 +132,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -294,7 +294,7 @@ HelpMessage: '' ### -Parameters -. + To construct, see NOTES section for PARAMETERS properties and create a hash table. ```yaml 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 bbebafe0352d0..06b8c07e30951 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 @@ -152,7 +152,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 5219a69d67a1e..368c9157dadf3 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 @@ -154,7 +154,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 26efa03ac765c..b3b2f00c4cfe7 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 @@ -585,7 +585,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications -. + To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -698,7 +698,7 @@ HelpMessage: '' ### -Endpoints -. + To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -894,7 +894,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1584,7 +1584,7 @@ HelpMessage: '' ### -TransitiveMemberOf -. + To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml 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 c6d3f4f14531b..969b99055eee0 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 @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 9741eff781adc..1ef2e4af972a6 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 @@ -150,7 +150,7 @@ HelpMessage: '' ### -Capability -. + ```yaml Type: System.String @@ -346,7 +346,7 @@ HelpMessage: '' ### -ProviderId -. + ```yaml Type: System.String @@ -373,7 +373,7 @@ HelpMessage: '' ### -ProviderName -. + ```yaml Type: System.String @@ -400,7 +400,7 @@ HelpMessage: '' ### -ProviderResourceId -. + ```yaml Type: System.String @@ -539,7 +539,7 @@ HelpMessage: '' ### -Uri -. + ```yaml Type: System.String 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 f3f1560a349f4..2b694aa9d8e9a 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 @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 16e4ae2d8586e..9b38882e04e94 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 @@ -122,7 +122,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 7c1e0699a34f6..57f1ae0a43c9b 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 @@ -203,7 +203,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -365,7 +365,7 @@ HelpMessage: '' ### -Parameters -. + To construct, see NOTES section for PARAMETERS properties and create a hash table. ```yaml 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 9808c92544ed8..368e6e2994f55 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 @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 1d1340427a6b9..d0f024b4c6d81 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 @@ -127,7 +127,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 f1638ae9ec47e..34f73c7f28164 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 @@ -156,7 +156,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -318,7 +318,7 @@ HelpMessage: '' ### -KeyId -. + ```yaml Type: System.String @@ -364,9 +364,8 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Proof -. + ```yaml Type: System.String 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 4990f0e421a1a..986b803bb4621 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 @@ -152,7 +152,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -314,7 +314,7 @@ HelpMessage: '' ### -KeyId -. + ```yaml Type: System.String 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 ef2c3be4ff77d..1ce3664a6e7fe 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 @@ -127,7 +127,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -289,7 +289,7 @@ HelpMessage: '' ### -KeyId -. + ```yaml Type: System.String @@ -335,9 +335,8 @@ AcceptedValues: [] HelpMessage: '' ``` -### -Proof -. + ```yaml Type: System.String 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 8e0fd2e20dcba..9c1b01464811c 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 @@ -121,7 +121,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -283,7 +283,7 @@ HelpMessage: '' ### -KeyId -. + ```yaml Type: System.String 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 a81c504b42706..d53e1cfc5ba9c 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 @@ -130,7 +130,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 e2fc40777eabc..0dd5822448816 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 @@ -131,7 +131,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml 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 9d8fa6a56cdc4..9d95131c2a8b9 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 @@ -147,7 +147,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream 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 12f754d12694b..140cd86bcc8bd 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 @@ -139,7 +139,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream 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 c7fdbed6aed4a..090da39b41189 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 @@ -130,7 +130,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -377,7 +377,7 @@ HelpMessage: '' ### -Value -. + To construct, see NOTES section for VALUE properties and create a hash table. ```yaml 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 94e02008624e5..877607c9451a3 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 @@ -147,7 +147,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -415,7 +415,7 @@ HelpMessage: '' ### -VerifiedPublisherId -. + ```yaml Type: System.String 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 b65e79222a6da..0fe13bdc2f1c9 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 @@ -117,7 +117,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream 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 bef7b37631d53..3803a0878c833 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 @@ -144,7 +144,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -418,7 +418,7 @@ HelpMessage: '' ### -Value -. + To construct, see NOTES section for VALUE properties and create a hash table. ```yaml 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 13642859a8f4b..d469d9434dfb9 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 @@ -92,7 +92,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -157,7 +157,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String @@ -178,7 +178,7 @@ HelpMessage: '' ### -EntityType -. + ```yaml Type: System.String @@ -262,7 +262,7 @@ HelpMessage: '' ### -MailNickname -. + ```yaml Type: System.String @@ -283,7 +283,7 @@ HelpMessage: '' ### -OnBehalfOfUserId -. + ```yaml Type: System.String 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 f94843ad93ad2..56243a5c2caf4 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 @@ -133,7 +133,7 @@ HelpMessage: '' ### -ApplicationIdentifier -. + ```yaml Type: System.String @@ -160,7 +160,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -231,7 +231,7 @@ HelpMessage: '' ### -Credentials -. + To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -483,7 +483,7 @@ HelpMessage: '' ### -TemplateId -. + ```yaml Type: System.String @@ -510,7 +510,7 @@ HelpMessage: '' ### -UseSavedCredentials -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 cc1d18e54555b..d971a20fd38b3 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 @@ -92,7 +92,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -157,7 +157,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String @@ -178,7 +178,7 @@ HelpMessage: '' ### -EntityType -. + ```yaml Type: System.String @@ -262,7 +262,7 @@ HelpMessage: '' ### -MailNickname -. + ```yaml Type: System.String @@ -283,7 +283,7 @@ HelpMessage: '' ### -OnBehalfOfUserId -. + ```yaml Type: System.String 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 f7fe32d57cb3c..6a7b143144a17 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 @@ -113,7 +113,7 @@ HelpMessage: '' ### -ApplicationIdentifier -. + ```yaml Type: System.String @@ -140,7 +140,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -211,7 +211,7 @@ HelpMessage: '' ### -Credentials -. + To construct, see NOTES section for CREDENTIALS properties and create a hash table. ```yaml @@ -490,7 +490,7 @@ HelpMessage: '' ### -TemplateId -. + ```yaml Type: System.String @@ -517,7 +517,7 @@ HelpMessage: '' ### -UseSavedCredentials -. + ```yaml Type: System.Management.Automation.SwitchParameter 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 1f4119f9f84d7..30fdacfae9f6b 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 @@ -598,7 +598,7 @@ HelpMessage: '' ### -DefaultRedirectUri -. + ```yaml Type: System.String @@ -848,7 +848,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies -. + To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1061,7 +1061,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1263,7 +1263,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1844,7 +1844,7 @@ HelpMessage: '' ### -TokenIssuancePolicies -. + To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1872,7 +1872,7 @@ HelpMessage: '' ### -TokenLifetimePolicies -. + To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml 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 cebccb2b37145..102c6f47cb2e4 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 @@ -578,7 +578,7 @@ HelpMessage: '' ### -DefaultRedirectUri -. + ```yaml Type: System.String @@ -828,7 +828,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies -. + To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1041,7 +1041,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1243,7 +1243,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1824,7 +1824,7 @@ HelpMessage: '' ### -TokenIssuancePolicies -. + To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1852,7 +1852,7 @@ HelpMessage: '' ### -TokenLifetimePolicies -. + To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml 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 4003e569e2f20..f52cc6f49bb15 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 @@ -583,7 +583,7 @@ HelpMessage: '' ### -DefaultRedirectUri -. + ```yaml Type: System.String @@ -833,7 +833,7 @@ HelpMessage: '' ### -HomeRealmDiscoveryPolicies -. + To construct, see NOTES section for HOMEREALMDISCOVERYPOLICIES properties and create a hash table. ```yaml @@ -1046,7 +1046,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1248,7 +1248,7 @@ HelpMessage: '' ### -Oauth2RequirePostResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -1829,7 +1829,7 @@ HelpMessage: '' ### -TokenIssuancePolicies -. + To construct, see NOTES section for TOKENISSUANCEPOLICIES properties and create a hash table. ```yaml @@ -1857,7 +1857,7 @@ HelpMessage: '' ### -TokenLifetimePolicies -. + To construct, see NOTES section for TOKENLIFETIMEPOLICIES properties and create a hash table. ```yaml 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 49c8276646a4c..ad6d1ddd7a096 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 @@ -746,7 +746,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications -. + To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -889,7 +889,7 @@ HelpMessage: '' ### -Endpoints -. + To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -1149,7 +1149,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -2022,7 +2022,7 @@ HelpMessage: '' ### -TransitiveMemberOf -. + To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml 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 cb1bfc6d521d9..4293505847f4e 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 @@ -782,7 +782,7 @@ HelpMessage: '' ### -DelegatedPermissionClassifications -. + To construct, see NOTES section for DELEGATEDPERMISSIONCLASSIFICATIONS properties and create a hash table. ```yaml @@ -925,7 +925,7 @@ HelpMessage: '' ### -Endpoints -. + To construct, see NOTES section for ENDPOINTS properties and create a hash table. ```yaml @@ -1185,7 +1185,7 @@ HelpMessage: '' ### -IsDisabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -2031,7 +2031,7 @@ HelpMessage: '' ### -TransitiveMemberOf -. + To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table. ```yaml 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 029deb46cdf49..631242ea3c3ef 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 @@ -151,7 +151,7 @@ HelpMessage: '' ### -Capability -. + ```yaml Type: System.String @@ -374,7 +374,7 @@ HelpMessage: '' ### -ProviderId -. + ```yaml Type: System.String @@ -401,7 +401,7 @@ HelpMessage: '' ### -ProviderName -. + ```yaml Type: System.String @@ -428,7 +428,7 @@ HelpMessage: '' ### -ProviderResourceId -. + ```yaml Type: System.String @@ -567,7 +567,7 @@ HelpMessage: '' ### -Uri -. + ```yaml Type: System.String From 2ad4b6593546df2a421b5722046657cdfc83f261 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:59 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Add-MgApplicationKey.md | 4 +- .../Add-MgApplicationPassword.md | 4 +- .../Add-MgServicePrincipalKey.md | 4 +- .../Add-MgServicePrincipalPassword.md | 4 +- ...ServicePrincipalTokenSigningCertificate.md | 4 +- .../Clear-MgApplicationVerifiedPublisher.md | 4 +- .../Confirm-MgApplicationMemberGroup.md | 4 +- .../Confirm-MgApplicationMemberObject.md | 2 +- .../Confirm-MgServicePrincipalMemberGroup.md | 4 +- .../Confirm-MgServicePrincipalMemberObject.md | 2 +- ...cationSynchronizationJobSchemaDirectory.md | 4 +- ...nSynchronizationTemplateSchemaDirectory.md | 4 +- ...ncipalSynchronizationJobSchemaDirectory.md | 4 +- ...lSynchronizationTemplateSchemaDirectory.md | 4 +- .../Get-MgApplication.md | 6 +- .../Get-MgApplicationAppManagementPolicy.md | 2 +- ...t-MgApplicationAppManagementPolicyByRef.md | 2 +- ...t-MgApplicationAppManagementPolicyCount.md | 2 +- .../Get-MgApplicationByAppId.md | 4 +- .../Get-MgApplicationById.md | 4 +- .../Get-MgApplicationByUniqueName.md | 4 +- .../Get-MgApplicationCount.md | 2 +- .../Get-MgApplicationCreatedOnBehalfOf.md | 2 +- .../Get-MgApplicationDelta.md | 4 +- .../Get-MgApplicationExtensionProperty.md | 6 +- ...Get-MgApplicationExtensionPropertyCount.md | 2 +- ...gApplicationFederatedIdentityCredential.md | 6 +- ...cationFederatedIdentityCredentialByName.md | 4 +- ...icationFederatedIdentityCredentialCount.md | 2 +- ...t-MgApplicationHomeRealmDiscoveryPolicy.md | 2 +- ...pplicationHomeRealmDiscoveryPolicyCount.md | 2 +- .../Get-MgApplicationLogo.md | 2 +- .../Get-MgApplicationMemberGroup.md | 4 +- .../Get-MgApplicationMemberObject.md | 4 +- .../Get-MgApplicationOwner.md | 4 +- ...t-MgApplicationOwnerAsAppRoleAssignment.md | 2 +- .../Get-MgApplicationOwnerAsEndpoint.md | 2 +- ...et-MgApplicationOwnerAsServicePrincipal.md | 2 +- .../Get-MgApplicationOwnerAsUser.md | 2 +- .../Get-MgApplicationOwnerByRef.md | 4 +- .../Get-MgApplicationOwnerCount.md | 2 +- ...pplicationOwnerCountAsAppRoleAssignment.md | 2 +- .../Get-MgApplicationOwnerCountAsEndpoint.md | 2 +- ...ApplicationOwnerCountAsServicePrincipal.md | 2 +- .../Get-MgApplicationOwnerCountAsUser.md | 2 +- .../Get-MgApplicationSynchronization.md | 2 +- ...MgApplicationSynchronizationAccessToken.md | 4 +- .../Get-MgApplicationSynchronizationJob.md | 2 +- ...ApplicationSynchronizationJobBulkUpload.md | 2 +- ...tionSynchronizationJobBulkUploadContent.md | 2 +- ...et-MgApplicationSynchronizationJobCount.md | 2 +- ...t-MgApplicationSynchronizationJobSchema.md | 2 +- ...cationSynchronizationJobSchemaDirectory.md | 2 +- ...nSynchronizationJobSchemaDirectoryCount.md | 2 +- ...MgApplicationSynchronizationSecretCount.md | 2 +- ...et-MgApplicationSynchronizationTemplate.md | 2 +- ...ApplicationSynchronizationTemplateCount.md | 2 +- ...pplicationSynchronizationTemplateSchema.md | 2 +- ...nSynchronizationTemplateSchemaDirectory.md | 2 +- ...hronizationTemplateSchemaDirectoryCount.md | 2 +- .../Get-MgApplicationTemplate.md | 6 +- .../Get-MgApplicationTemplateCount.md | 2 +- .../Get-MgApplicationTokenIssuancePolicy.md | 4 +- ...t-MgApplicationTokenIssuancePolicyByRef.md | 4 +- ...t-MgApplicationTokenIssuancePolicyCount.md | 2 +- .../Get-MgApplicationTokenLifetimePolicy.md | 4 +- ...t-MgApplicationTokenLifetimePolicyByRef.md | 4 +- ...t-MgApplicationTokenLifetimePolicyCount.md | 2 +- .../Get-MgGroupAppRoleAssignment.md | 4 +- .../Get-MgGroupAppRoleAssignmentCount.md | 2 +- .../Get-MgServicePrincipal.md | 6 +- ...t-MgServicePrincipalAppManagementPolicy.md | 2 +- ...ervicePrincipalAppManagementPolicyCount.md | 2 +- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 6 +- ...gServicePrincipalAppRoleAssignedToCount.md | 2 +- ...Get-MgServicePrincipalAppRoleAssignment.md | 6 +- ...gServicePrincipalAppRoleAssignmentCount.md | 2 +- .../Get-MgServicePrincipalByAppId.md | 4 +- .../Get-MgServicePrincipalById.md | 4 +- ...et-MgServicePrincipalClaimMappingPolicy.md | 4 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 +- ...ServicePrincipalClaimMappingPolicyCount.md | 2 +- .../Get-MgServicePrincipalCount.md | 2 +- .../Get-MgServicePrincipalCreatedObject.md | 4 +- ...rincipalCreatedObjectAsServicePrincipal.md | 2 +- ...et-MgServicePrincipalCreatedObjectCount.md | 2 +- ...palCreatedObjectCountAsServicePrincipal.md | 2 +- ...ncipalDelegatedPermissionClassification.md | 4 +- ...lDelegatedPermissionClassificationCount.md | 2 +- .../Get-MgServicePrincipalDelta.md | 4 +- .../Get-MgServicePrincipalEndpoint.md | 2 +- .../Get-MgServicePrincipalEndpointCount.md | 2 +- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 4 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 +- ...ePrincipalHomeRealmDiscoveryPolicyCount.md | 2 +- .../Get-MgServicePrincipalMemberGroup.md | 4 +- .../Get-MgServicePrincipalMemberObject.md | 4 +- .../Get-MgServicePrincipalMemberOf.md | 4 +- ...cePrincipalMemberOfAsAdministrativeUnit.md | 2 +- ...ServicePrincipalMemberOfAsDirectoryRole.md | 2 +- .../Get-MgServicePrincipalMemberOfAsGroup.md | 2 +- .../Get-MgServicePrincipalMemberOfCount.md | 2 +- ...ncipalMemberOfCountAsAdministrativeUnit.md | 2 +- ...cePrincipalMemberOfCountAsDirectoryRole.md | 2 +- ...-MgServicePrincipalMemberOfCountAsGroup.md | 2 +- ...MgServicePrincipalOauth2PermissionGrant.md | 4 +- ...vicePrincipalOauth2PermissionGrantCount.md | 2 +- .../Get-MgServicePrincipalOwnedObject.md | 4 +- ...PrincipalOwnedObjectAsAppRoleAssignment.md | 2 +- ...ervicePrincipalOwnedObjectAsApplication.md | 2 +- ...MgServicePrincipalOwnedObjectAsEndpoint.md | 2 +- ...et-MgServicePrincipalOwnedObjectAsGroup.md | 2 +- ...ePrincipalOwnedObjectAsServicePrincipal.md | 2 +- .../Get-MgServicePrincipalOwnedObjectCount.md | 2 +- ...ipalOwnedObjectCountAsAppRoleAssignment.md | 2 +- ...ePrincipalOwnedObjectCountAsApplication.md | 2 +- ...vicePrincipalOwnedObjectCountAsEndpoint.md | 2 +- ...ServicePrincipalOwnedObjectCountAsGroup.md | 2 +- ...cipalOwnedObjectCountAsServicePrincipal.md | 2 +- .../Get-MgServicePrincipalOwner.md | 2 +- ...ervicePrincipalOwnerAsAppRoleAssignment.md | 2 +- .../Get-MgServicePrincipalOwnerAsEndpoint.md | 2 +- ...ServicePrincipalOwnerAsServicePrincipal.md | 2 +- .../Get-MgServicePrincipalOwnerAsUser.md | 2 +- .../Get-MgServicePrincipalOwnerByRef.md | 2 +- .../Get-MgServicePrincipalOwnerCount.md | 2 +- ...ePrincipalOwnerCountAsAppRoleAssignment.md | 2 +- ...-MgServicePrincipalOwnerCountAsEndpoint.md | 2 +- ...cePrincipalOwnerCountAsServicePrincipal.md | 2 +- .../Get-MgServicePrincipalOwnerCountAsUser.md | 2 +- ...cipalRemoteDesktopSecurityConfiguration.md | 4 +- ...pSecurityConfigurationApprovedClientApp.md | 6 +- ...rityConfigurationApprovedClientAppCount.md | 2 +- ...pSecurityConfigurationTargetDeviceGroup.md | 6 +- ...rityConfigurationTargetDeviceGroupCount.md | 2 +- .../Get-MgServicePrincipalSynchronization.md | 2 +- ...vicePrincipalSynchronizationAccessToken.md | 4 +- ...et-MgServicePrincipalSynchronizationJob.md | 6 +- ...cePrincipalSynchronizationJobBulkUpload.md | 2 +- ...ipalSynchronizationJobBulkUploadContent.md | 2 +- ...ServicePrincipalSynchronizationJobCount.md | 2 +- ...ervicePrincipalSynchronizationJobSchema.md | 4 +- ...ncipalSynchronizationJobSchemaDirectory.md | 2 +- ...lSynchronizationJobSchemaDirectoryCount.md | 2 +- ...vicePrincipalSynchronizationSecretCount.md | 2 +- ...ServicePrincipalSynchronizationTemplate.md | 4 +- ...cePrincipalSynchronizationTemplateCount.md | 2 +- ...ePrincipalSynchronizationTemplateSchema.md | 2 +- ...lSynchronizationTemplateSchemaDirectory.md | 2 +- ...hronizationTemplateSchemaDirectoryCount.md | 2 +- ...t-MgServicePrincipalTokenIssuancePolicy.md | 2 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 2 +- ...ervicePrincipalTokenIssuancePolicyCount.md | 2 +- ...t-MgServicePrincipalTokenLifetimePolicy.md | 4 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 4 +- ...ervicePrincipalTokenLifetimePolicyCount.md | 2 +- ...et-MgServicePrincipalTransitiveMemberOf.md | 4 +- ...lTransitiveMemberOfAsAdministrativeUnit.md | 2 +- ...ncipalTransitiveMemberOfAsDirectoryRole.md | 2 +- ...rvicePrincipalTransitiveMemberOfAsGroup.md | 2 +- ...ServicePrincipalTransitiveMemberOfCount.md | 2 +- ...sitiveMemberOfCountAsAdministrativeUnit.md | 2 +- ...lTransitiveMemberOfCountAsDirectoryRole.md | 2 +- ...PrincipalTransitiveMemberOfCountAsGroup.md | 2 +- .../Get-MgUserAppRoleAssignment.md | 4 +- .../Get-MgUserAppRoleAssignmentCount.md | 2 +- ...icationSynchronizationJobSchemaOperator.md | 4 +- ...onSynchronizationTemplateSchemaOperator.md | 4 +- ...incipalSynchronizationJobSchemaOperator.md | 4 +- ...alSynchronizationTemplateSchemaOperator.md | 4 +- ...tionApplicationSynchronizationJobSchema.md | 4 +- ...pplicationSynchronizationTemplateSchema.md | 4 +- ...ervicePrincipalSynchronizationJobSchema.md | 4 +- ...ePrincipalSynchronizationTemplateSchema.md | 4 +- ...Invoke-MgInstantiateApplicationTemplate.md | 4 +- ...ationSynchronizationJobSchemaExpression.md | 4 +- ...SynchronizationTemplateSchemaExpression.md | 4 +- ...cipalSynchronizationJobSchemaExpression.md | 4 +- ...SynchronizationTemplateSchemaExpression.md | 4 +- .../New-MgApplication.md | 4 +- ...w-MgApplicationAppManagementPolicyByRef.md | 4 +- .../New-MgApplicationExtensionProperty.md | 4 +- ...gApplicationFederatedIdentityCredential.md | 4 +- .../New-MgApplicationOwnerByRef.md | 4 +- .../New-MgApplicationSynchronizationJob.md | 2 +- ...MgApplicationSynchronizationJobOnDemand.md | 4 +- ...cationSynchronizationJobSchemaDirectory.md | 2 +- ...ew-MgApplicationSynchronizationTemplate.md | 2 +- ...nSynchronizationTemplateSchemaDirectory.md | 2 +- ...w-MgApplicationTokenIssuancePolicyByRef.md | 4 +- ...w-MgApplicationTokenLifetimePolicyByRef.md | 4 +- .../New-MgGroupAppRoleAssignment.md | 4 +- .../New-MgServicePrincipal.md | 4 +- ...New-MgServicePrincipalAppRoleAssignedTo.md | 4 +- ...New-MgServicePrincipalAppRoleAssignment.md | 4 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 +- ...ncipalDelegatedPermissionClassification.md | 4 +- .../New-MgServicePrincipalEndpoint.md | 2 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 +- .../New-MgServicePrincipalOwnerByRef.md | 4 +- ...pSecurityConfigurationApprovedClientApp.md | 4 +- ...pSecurityConfigurationTargetDeviceGroup.md | 4 +- ...ew-MgServicePrincipalSynchronizationJob.md | 4 +- ...vicePrincipalSynchronizationJobOnDemand.md | 4 +- ...ncipalSynchronizationJobSchemaDirectory.md | 2 +- ...ServicePrincipalSynchronizationTemplate.md | 2 +- ...lSynchronizationTemplateSchemaDirectory.md | 2 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 2 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 4 +- .../New-MgUserAppRoleAssignment.md | 4 +- .../Remove-MgApplication.md | 4 +- ...anagementPolicyAppManagementPolicyByRef.md | 4 +- ...e-MgApplicationAppManagementPolicyByRef.md | 471 +++++++++++++++++ .../Remove-MgApplicationByAppId.md | 4 +- .../Remove-MgApplicationByUniqueName.md | 4 +- .../Remove-MgApplicationExtensionProperty.md | 4 +- ...gApplicationFederatedIdentityCredential.md | 4 +- ...cationFederatedIdentityCredentialByName.md | 4 +- .../Remove-MgApplicationKey.md | 4 +- .../Remove-MgApplicationLogo.md | 2 +- .../Remove-MgApplicationOwnerByRef.md | 478 +++++++++++++++++ ...-MgApplicationOwnerDirectoryObjectByRef.md | 4 +- .../Remove-MgApplicationPassword.md | 4 +- .../Remove-MgApplicationSynchronization.md | 2 +- .../Remove-MgApplicationSynchronizationJob.md | 2 +- ...ApplicationSynchronizationJobBulkUpload.md | 2 +- ...tionSynchronizationJobBulkUploadContent.md | 2 +- ...e-MgApplicationSynchronizationJobSchema.md | 2 +- ...cationSynchronizationJobSchemaDirectory.md | 2 +- ...ve-MgApplicationSynchronizationTemplate.md | 2 +- ...pplicationSynchronizationTemplateSchema.md | 2 +- ...nSynchronizationTemplateSchemaDirectory.md | 2 +- ...e-MgApplicationTokenIssuancePolicyByRef.md | 477 +++++++++++++++++ ...nIssuancePolicyTokenIssuancePolicyByRef.md | 4 +- ...e-MgApplicationTokenLifetimePolicyByRef.md | 477 +++++++++++++++++ ...nLifetimePolicyTokenLifetimePolicyByRef.md | 4 +- .../Remove-MgGroupAppRoleAssignment.md | 4 +- .../Remove-MgServicePrincipal.md | 4 +- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 4 +- ...ove-MgServicePrincipalAppRoleAssignment.md | 4 +- .../Remove-MgServicePrincipalByAppId.md | 4 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 477 +++++++++++++++++ ...aimMappingPolicyClaimMappingPolicyByRef.md | 4 +- ...ncipalDelegatedPermissionClassification.md | 4 +- .../Remove-MgServicePrincipalEndpoint.md | 2 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 477 +++++++++++++++++ ...veryPolicyHomeRealmDiscoveryPolicyByRef.md | 4 +- .../Remove-MgServicePrincipalKey.md | 4 +- .../Remove-MgServicePrincipalOwnerByRef.md | 482 ++++++++++++++++++ ...rvicePrincipalOwnerDirectoryObjectByRef.md | 4 +- .../Remove-MgServicePrincipalPassword.md | 4 +- ...cipalRemoteDesktopSecurityConfiguration.md | 4 +- ...pSecurityConfigurationApprovedClientApp.md | 4 +- ...pSecurityConfigurationTargetDeviceGroup.md | 4 +- ...emove-MgServicePrincipalSynchronization.md | 2 +- ...ve-MgServicePrincipalSynchronizationJob.md | 4 +- ...cePrincipalSynchronizationJobBulkUpload.md | 2 +- ...ipalSynchronizationJobBulkUploadContent.md | 2 +- ...ervicePrincipalSynchronizationJobSchema.md | 2 +- ...ncipalSynchronizationJobSchemaDirectory.md | 2 +- ...ServicePrincipalSynchronizationTemplate.md | 2 +- ...ePrincipalSynchronizationTemplateSchema.md | 2 +- ...lSynchronizationTemplateSchemaDirectory.md | 2 +- ...ervicePrincipalTokenIssuancePolicyByRef.md | 2 +- ...nIssuancePolicyTokenIssuancePolicyByRef.md | 2 +- ...ervicePrincipalTokenLifetimePolicyByRef.md | 4 +- ...nLifetimePolicyTokenLifetimePolicyByRef.md | 4 +- .../Remove-MgUserAppRoleAssignment.md | 4 +- ...Restart-MgApplicationSynchronizationJob.md | 4 +- ...rt-MgServicePrincipalSynchronizationJob.md | 4 +- .../Set-MgApplicationLogo.md | 2 +- .../Set-MgApplicationSynchronization.md | 2 +- ...tionSynchronizationJobBulkUploadContent.md | 2 +- .../Set-MgApplicationSynchronizationSecret.md | 2 +- .../Set-MgApplicationVerifiedPublisher.md | 4 +- .../Set-MgServicePrincipalSynchronization.md | 2 +- ...ipalSynchronizationJobBulkUploadContent.md | 2 +- ...MgServicePrincipalSynchronizationSecret.md | 4 +- .../Start-MgApplicationSynchronizationJob.md | 4 +- ...rt-MgServicePrincipalSynchronizationJob.md | 4 +- ...Suspend-MgApplicationSynchronizationJob.md | 4 +- ...nd-MgServicePrincipalSynchronizationJob.md | 4 +- .../Test-MgApplicationProperty.md | 4 +- ...ApplicationSynchronizationJobCredential.md | 4 +- .../Test-MgServicePrincipalProperty.md | 4 +- ...cePrincipalSynchronizationJobCredential.md | 4 +- .../Update-MgApplication.md | 4 +- .../Update-MgApplicationByAppId.md | 4 +- .../Update-MgApplicationByUniqueName.md | 4 +- .../Update-MgApplicationExtensionProperty.md | 2 +- ...gApplicationFederatedIdentityCredential.md | 4 +- ...cationFederatedIdentityCredentialByName.md | 4 +- .../Update-MgApplicationSynchronizationJob.md | 2 +- ...ApplicationSynchronizationJobBulkUpload.md | 2 +- ...e-MgApplicationSynchronizationJobSchema.md | 2 +- ...cationSynchronizationJobSchemaDirectory.md | 2 +- ...te-MgApplicationSynchronizationTemplate.md | 4 +- ...pplicationSynchronizationTemplateSchema.md | 2 +- ...nSynchronizationTemplateSchemaDirectory.md | 2 +- .../Update-MgGroupAppRoleAssignment.md | 2 +- .../Update-MgServicePrincipal.md | 4 +- ...ate-MgServicePrincipalAppRoleAssignedTo.md | 2 +- ...ate-MgServicePrincipalAppRoleAssignment.md | 2 +- .../Update-MgServicePrincipalByAppId.md | 4 +- ...ncipalDelegatedPermissionClassification.md | 2 +- .../Update-MgServicePrincipalEndpoint.md | 2 +- ...cipalRemoteDesktopSecurityConfiguration.md | 4 +- ...pSecurityConfigurationApprovedClientApp.md | 4 +- ...pSecurityConfigurationTargetDeviceGroup.md | 4 +- ...te-MgServicePrincipalSynchronizationJob.md | 2 +- ...cePrincipalSynchronizationJobBulkUpload.md | 2 +- ...ervicePrincipalSynchronizationJobSchema.md | 4 +- ...ncipalSynchronizationJobSchemaDirectory.md | 2 +- ...ServicePrincipalSynchronizationTemplate.md | 2 +- ...ePrincipalSynchronizationTemplateSchema.md | 2 +- ...lSynchronizationTemplateSchemaDirectory.md | 2 +- .../Update-MgUserAppRoleAssignment.md | 2 +- 317 files changed, 3807 insertions(+), 468 deletions(-) create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md 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 5c971d2db9898..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 @@ -687,8 +687,8 @@ Optional. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey) -- [](https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0) +- [Add-MgApplicationKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationkey) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0) 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 b751d231581e9..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 @@ -602,8 +602,8 @@ Optional. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword) -- [](https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0) +- [Add-MgApplicationPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgapplicationpassword) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0) 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 83f1e5cbdbe30..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 @@ -683,8 +683,8 @@ Optional. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0) +- [Add-MgServicePrincipalKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalkey) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0) 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 b6a171c17d13e..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 @@ -550,8 +550,8 @@ Optional. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0) +- [Add-MgServicePrincipalPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipalpassword) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0) 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 1c557bed6aa5f..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 @@ -557,8 +557,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0) +- [Add-MgServicePrincipalTokenSigningCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/add-mgserviceprincipaltokensigningcertificate) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0) 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 622dc071a7bb4..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 @@ -402,8 +402,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher) -- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-unsetverifiedpublisher?view=graph-rest-1.0) +- [Clear-MgApplicationVerifiedPublisher](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/clear-mgapplicationverifiedpublisher) +- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-unsetverifiedpublisher?view=graph-rest-1.0) 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 020adda8fca9a..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 @@ -497,8 +497,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup) -- [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) +- [Confirm-MgApplicationMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmembergroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) 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 f2d8398a5ca85..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 @@ -489,7 +489,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject) +- [Confirm-MgApplicationMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgapplicationmemberobject) 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 dc9de2aeba5b7..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 @@ -505,8 +505,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup) -- [](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) +- [Confirm-MgServicePrincipalMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmembergroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0) 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 3f89be3e9b614..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 @@ -497,7 +497,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject) +- [Confirm-MgServicePrincipalMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/confirm-mgserviceprincipalmemberobject) 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 8cf10f96397f6..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 @@ -409,8 +409,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory) -- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) +- [Find-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationjobschemadirectory) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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 9383d3307b3c4..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 @@ -409,8 +409,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory) -- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) +- [Find-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgapplicationsynchronizationtemplateschemadirectory) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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 01f1c2be0d715..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 @@ -429,8 +429,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory) -- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) +- [Find-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationjobschemadirectory) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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 2542fe9831fe3..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 @@ -408,8 +408,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory) -- [](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) +- [Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/find-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0) 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 61a526437fdef..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 @@ -678,9 +678,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication) -- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0) +- [Get-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplication) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0) 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 8f16956e058fc..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 @@ -472,7 +472,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy) +- [Get-MgApplicationAppManagementPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicy) 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 50bac5afb7421..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 @@ -428,7 +428,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref) +- [Get-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicybyref) 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 598395458147c..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount) +- [Get-MgApplicationAppManagementPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationappmanagementpolicycount) 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 822cb2a6c9725..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 @@ -388,8 +388,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid) -- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) +- [Get-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) 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 20aad573e8ca7..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 @@ -390,8 +390,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename) -- [](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) +- [Get-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationbyuniquename) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0) 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 6453a34dfd8fc..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 @@ -304,7 +304,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount) +- [Get-MgApplicationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcount) 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 60466cd33d7d9..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 @@ -368,7 +368,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof) +- [Get-MgApplicationCreatedOnBehalfOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationcreatedonbehalfof) 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 479648a8d122a..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 @@ -473,8 +473,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta) -- [](https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0) +- [Get-MgApplicationDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationdelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0) 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 b8f52b0490519..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 @@ -598,9 +598,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty) -- [](https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0) +- [Get-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionproperty) +- [Graph API Reference](https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0) 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 0d5f83069676d..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount) +- [Get-MgApplicationExtensionPropertyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationextensionpropertycount) 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 26b0a76701756..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 @@ -599,9 +599,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0) +- [Get-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-1.0) 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 a3273fe4d0c9d..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 @@ -397,8 +397,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) +- [Get-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialbyname) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0) 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 64731c0689c34..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 @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount) +- [Get-MgApplicationFederatedIdentityCredentialCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationfederatedidentitycredentialcount) 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 5efa624a2a4de..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 @@ -578,7 +578,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy) +- [Get-MgApplicationHomeRealmDiscoveryPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicy) 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 dff754cc19182..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 @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount) +- [Get-MgApplicationHomeRealmDiscoveryPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationhomerealmdiscoverypolicycount) 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 52a85585c3152..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 @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo) +- [Get-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationlogo) 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 a4ab7cd2587e1..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 @@ -497,8 +497,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup) -- [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) +- [Get-MgApplicationMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmembergroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) 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 39c41afd59e51..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 @@ -491,8 +491,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject) -- [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) +- [Get-MgApplicationMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationmemberobject) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) 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 1a51fd3546d19..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 @@ -515,8 +515,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner) -- [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) +- [Get-MgApplicationOwner](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationowner) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) 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 9fcbfbff05c94..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment) +- [Get-MgApplicationOwnerAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasapproleassignment) 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 96a130d63ca6b..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint) +- [Get-MgApplicationOwnerAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasendpoint) 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 f5fbb015a9297..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal) +- [Get-MgApplicationOwnerAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasserviceprincipal) 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 ab8b489f5d35a..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser) +- [Get-MgApplicationOwnerAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerasuser) 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 13c5e30fa54a7..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 @@ -458,8 +458,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref) -- [](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) +- [Get-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownerbyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0) 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 d93a39e68f4f3..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 @@ -395,7 +395,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount) +- [Get-MgApplicationOwnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercount) 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 9f70481039444..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 @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment) +- [Get-MgApplicationOwnerCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasapproleassignment) 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 c39423758db4b..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 @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint) +- [Get-MgApplicationOwnerCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasendpoint) 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 1f7302de9533e..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 @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal) +- [Get-MgApplicationOwnerCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasserviceprincipal) 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 59f09f73ffb34..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 @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser) +- [Get-MgApplicationOwnerCountAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationownercountasuser) 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 4b30af06aec6b..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 @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization) +- [Get-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronization) 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 fc8ba090edbb3..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 @@ -549,8 +549,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) +- [Get-MgApplicationSynchronizationAccessToken](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationaccesstoken) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) 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 70cb9a90c2a77..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 @@ -578,7 +578,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob) +- [Get-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjob) 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 0f00275d482ce..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 @@ -389,7 +389,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload) +- [Get-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkupload) 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 5e9bd9a8550f7..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 @@ -386,7 +386,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent) +- [Get-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobbulkuploadcontent) 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 46f719a117c0d..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount) +- [Get-MgApplicationSynchronizationJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobcount) 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 edc3d94a98857..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 @@ -389,7 +389,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema) +- [Get-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschema) 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 d64f009eee688..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 @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory) +- [Get-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectory) 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 048c0e03c38c2..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount) +- [Get-MgApplicationSynchronizationJobSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationjobschemadirectorycount) 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 988ea5916a1ba..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount) +- [Get-MgApplicationSynchronizationSecretCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationsecretcount) 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 595f3d495ff61..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 @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate) +- [Get-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplate) 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 aba927f25e6d6..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 @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount) +- [Get-MgApplicationSynchronizationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplatecount) 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 361e756e007bc..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 @@ -397,7 +397,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema) +- [Get-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschema) 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 6b1db23931da8..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 @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory) +- [Get-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectory) 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 9c5dfab9a0793..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount) +- [Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationsynchronizationtemplateschemadirectorycount) 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 f59cb81e48752..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 @@ -574,9 +574,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate) -- [](https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0) +- [Get-MgApplicationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplate) +- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0) 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 b3b6b113e7b0c..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 @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount) +- [Get-MgApplicationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtemplatecount) 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 a1926c3d5b9e7..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 @@ -493,8 +493,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy) -- [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) +- [Get-MgApplicationTokenIssuancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) 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 cea4cb506d734..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 @@ -436,8 +436,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) +- [Get-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0) 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 75ff8f6bb5e48..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount) +- [Get-MgApplicationTokenIssuancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenissuancepolicycount) 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 ef6a924928542..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 @@ -495,8 +495,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy) -- [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) +- [Get-MgApplicationTokenLifetimePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) 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 fb3f23c8f39c4..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 @@ -438,8 +438,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) +- [Get-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0) 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 4f1d6a8bd384b..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount) +- [Get-MgApplicationTokenLifetimePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgapplicationtokenlifetimepolicycount) 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 451f831b17198..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 @@ -622,8 +622,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment) -- [](https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0) +- [Get-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0) 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 6af8c3539a07c..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 @@ -394,7 +394,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount) +- [Get-MgGroupAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mggroupapproleassignmentcount) 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 a1726811d1af7..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 @@ -687,9 +687,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0) +- [Get-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipal) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0) 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 72aaae09ef01c..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy) +- [Get-MgServicePrincipalAppManagementPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicy) 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 7437a0d8d6f27..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount) +- [Get-MgServicePrincipalAppManagementPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalappmanagementpolicycount) 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 01814a119aab6..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 @@ -590,9 +590,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto) -- [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0) +- [Get-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedto) +- [Graph API Reference](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0) 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 72049f7cb50b5..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 @@ -371,7 +371,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount) +- [Get-MgServicePrincipalAppRoleAssignedToCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignedtocount) 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 2d0c12edd129e..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 @@ -634,9 +634,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment) -- [](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0) +- [Get-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0) 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 7ede81446d4e3..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 @@ -395,7 +395,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount) +- [Get-MgServicePrincipalAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalapproleassignmentcount) 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 5253db230c443..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 @@ -375,8 +375,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) +- [Get-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0) 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 63618acb9d543..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 @@ -390,8 +390,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount) +- [Get-MgServicePrincipalClaimMappingPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalclaimmappingpolicycount) 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 634658f278fbb..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 @@ -304,7 +304,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount) +- [Get-MgServicePrincipalCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcount) 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 68564c9fcc5db..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 @@ -594,8 +594,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0) +- [Get-MgServicePrincipalCreatedObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobject) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0) 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 bdb154bd86046..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal) +- [Get-MgServicePrincipalCreatedObjectAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectasserviceprincipal) 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 7aa06ea91c8b8..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 @@ -371,7 +371,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount) +- [Get-MgServicePrincipalCreatedObjectCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcount) 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 a213b4e20c1fa..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 @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal) +- [Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalcreatedobjectcountasserviceprincipal) 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 0c2a9dd78fb62..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 @@ -591,8 +591,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0) +- [Get-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassification) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0) 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 59e6b6fdb0970..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 @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount) +- [Get-MgServicePrincipalDelegatedPermissionClassificationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelegatedpermissionclassificationcount) 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 f3e9691e4b8d1..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 @@ -473,8 +473,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0) +- [Get-MgServicePrincipalDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaldelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0) 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 397cb432db9be..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 @@ -576,7 +576,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint) +- [Get-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpoint) 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 62688bd896680..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 @@ -363,7 +363,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount) +- [Get-MgServicePrincipalEndpointCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalendpointcount) 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 4ae90e3a11528..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 @@ -492,8 +492,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) +- [Get-MgServicePrincipalHomeRealmDiscoveryPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) 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 bd67cf95880b7..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 @@ -435,8 +435,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) +- [Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0) 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 8db2eecbd365b..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount) +- [Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalhomerealmdiscoverypolicycount) 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 0171653d12d33..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 @@ -504,8 +504,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup) -- [](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) +- [Get-MgServicePrincipalMemberGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmembergroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0) 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 ad3f09c39167c..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 @@ -498,8 +498,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject) -- [](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) +- [Get-MgServicePrincipalMemberObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberobject) +- [Graph API Reference](https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0) 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 0ebc3ad833899..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 @@ -618,8 +618,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0) +- [Get-MgServicePrincipalMemberOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberof) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0) 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 7049b6d91eba4..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit) +- [Get-MgServicePrincipalMemberOfAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasadministrativeunit) 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 d03212c8a7b26..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole) +- [Get-MgServicePrincipalMemberOfAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasdirectoryrole) 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 dbdf3fcd5418f..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 @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup) +- [Get-MgServicePrincipalMemberOfAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofasgroup) 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 a81434067aff0..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 @@ -395,7 +395,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount) +- [Get-MgServicePrincipalMemberOfCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcount) 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 292e1f5b9e82e..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit) +- [Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasadministrativeunit) 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 f99a973baa62d..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole) +- [Get-MgServicePrincipalMemberOfCountAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasdirectoryrole) 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 b8568747e52e7..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup) +- [Get-MgServicePrincipalMemberOfCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalmemberofcountasgroup) 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 10123ed14b15d..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 @@ -594,8 +594,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0) +- [Get-MgServicePrincipalOauth2PermissionGrant](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrant) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0) 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 fba72f47bfe90..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount) +- [Get-MgServicePrincipalOauth2PermissionGrantCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaloauth2permissiongrantcount) 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 bdc8dc6cab25a..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 @@ -595,8 +595,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0) +- [Get-MgServicePrincipalOwnedObject](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobject) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0) 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 73b4e467d5aca..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment) +- [Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapproleassignment) 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 a4097661958f7..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication) +- [Get-MgServicePrincipalOwnedObjectAsApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasapplication) 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 3faee23167a5f..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint) +- [Get-MgServicePrincipalOwnedObjectAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasendpoint) 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 f793fd954d525..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup) +- [Get-MgServicePrincipalOwnedObjectAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasgroup) 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 b1786e7878004..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 @@ -577,7 +577,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal) +- [Get-MgServicePrincipalOwnedObjectAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectasserviceprincipal) 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 eae877dd6b989..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 @@ -371,7 +371,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount) +- [Get-MgServicePrincipalOwnedObjectCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcount) 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 e9780d942826a..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 @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment) +- [Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapproleassignment) 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 509cec9c62723..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication) +- [Get-MgServicePrincipalOwnedObjectCountAsApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasapplication) 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 aeee9fada65cc..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint) +- [Get-MgServicePrincipalOwnedObjectCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasendpoint) 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 28e9db13ac655..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup) +- [Get-MgServicePrincipalOwnedObjectCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasgroup) 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 27d476b3e2816..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 @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal) +- [Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownedobjectcountasserviceprincipal) 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 d8965da2a16af..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 @@ -518,7 +518,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner) +- [Get-MgServicePrincipalOwner](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalowner) 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 895f04f016efb..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment) +- [Get-MgServicePrincipalOwnerAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasapproleassignment) 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 9e876ef48f031..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 @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint) +- [Get-MgServicePrincipalOwnerAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasendpoint) 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 6f9d4fb6f1f9a..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal) +- [Get-MgServicePrincipalOwnerAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasserviceprincipal) 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 cdbb3d7e9b0ec..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 @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser) +- [Get-MgServicePrincipalOwnerAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerasuser) 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 0b4c81f73e4ba..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 @@ -461,7 +461,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref) +- [Get-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownerbyref) 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 49b58b896a969..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 @@ -395,7 +395,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount) +- [Get-MgServicePrincipalOwnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercount) 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 1b3e0ba7df7ac..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment) +- [Get-MgServicePrincipalOwnerCountAsAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasapproleassignment) 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 23fffa0cf2074..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint) +- [Get-MgServicePrincipalOwnerCountAsEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasendpoint) 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 1be9bef9b11d7..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal) +- [Get-MgServicePrincipalOwnerCountAsServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasserviceprincipal) 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 b63c1cf5511d1..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser) +- [Get-MgServicePrincipalOwnerCountAsUser](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalownercountasuser) 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 a5784c267d25a..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 @@ -392,8 +392,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0) +- [Get-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfiguration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0) 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 index 9e459afb35b6f..51450ff6743a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -599,9 +599,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) -- [](https://learn.microsoft.com/graph/api/approvedclientapp-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-approvedclientapps?view=graph-rest-1.0) +- [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 index 28bb461762ba1..dd0ddc73fd46c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientAppCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientappcount) +- [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 f3fbb97ac05af..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 @@ -599,9 +599,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [](https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0) +- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0) 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 02074035a0315..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 @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount) +- [Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroupcount) 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 3ac4cf53ac350..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 @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization) +- [Get-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronization) 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 774992415456b..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 @@ -527,8 +527,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) +- [Get-MgServicePrincipalSynchronizationAccessToken](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationaccesstoken) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0) 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 df21812055ed5..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 @@ -598,9 +598,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0) +- [Get-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0) 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 6208832561afa..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 @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload) +- [Get-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkupload) 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 cfcbccbc6aa9f..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 @@ -385,7 +385,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent) +- [Get-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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 0e628ba6dd3f4..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount) +- [Get-MgServicePrincipalSynchronizationJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobcount) 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 5d8a38ed7c613..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 @@ -409,8 +409,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0) +- [Get-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0) 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 4e9483c945c56..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 @@ -605,7 +605,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory) +- [Get-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectory) 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 5d497a1d72c4d..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 @@ -386,7 +386,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount) +- [Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationjobschemadirectorycount) 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 9505fb621ee81..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount) +- [Get-MgServicePrincipalSynchronizationSecretCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationsecretcount) 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 2f0e97288bbef..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 @@ -585,8 +585,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0) +- [Get-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplate) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0) 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 f3c3a78b13fa9..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount) +- [Get-MgServicePrincipalSynchronizationTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplatecount) 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 7aed3bf002706..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 @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema) +- [Get-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschema) 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 bc54ad94bb870..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 @@ -605,7 +605,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectory) 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 86f64aea33d78..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 @@ -386,7 +386,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount) +- [Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipalsynchronizationtemplateschemadirectorycount) 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 f24505f7aa8d5..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 @@ -471,7 +471,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy) +- [Get-MgServicePrincipalTokenIssuancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicy) 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 4655e47225fd1..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 @@ -427,7 +427,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref) +- [Get-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicybyref) 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 16dce680906f1..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 @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount) +- [Get-MgServicePrincipalTokenIssuancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenissuancepolicycount) 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 db46956e09d19..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 @@ -494,8 +494,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) +- [Get-MgServicePrincipalTokenLifetimePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) 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 69d72bd645d86..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 @@ -437,8 +437,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) +- [Get-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0) 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 df71700306fea..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 @@ -372,7 +372,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount) +- [Get-MgServicePrincipalTokenLifetimePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltokenlifetimepolicycount) 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 b0e5f627226ad..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 @@ -612,8 +612,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0) +- [Get-MgServicePrincipalTransitiveMemberOf](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberof) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0) 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 b28695fdfe1fa..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit) +- [Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasadministrativeunit) 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 86da6cc54f755..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole) +- [Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasdirectoryrole) 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 a7284f0be180a..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 @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup) +- [Get-MgServicePrincipalTransitiveMemberOfAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofasgroup) 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 96a2d8f81093b..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 @@ -395,7 +395,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount) +- [Get-MgServicePrincipalTransitiveMemberOfCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcount) 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 0acafc6f253fc..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit) +- [Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasadministrativeunit) 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 ca7e333682ab6..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole) +- [Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasdirectoryrole) 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 83d6f4c96c399..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 @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup) +- [Get-MgServicePrincipalTransitiveMemberOfCountAsGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mgserviceprincipaltransitivememberofcountasgroup) 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 c14472f3a33a3..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 @@ -625,8 +625,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment) -- [](https://learn.microsoft.com/graph/api/agentuser-list-approleassignments?view=graph-rest-1.0) +- [Get-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/agentuser-list-approleassignments?view=graph-rest-1.0) 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 b5fb28e46d96c..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 @@ -394,7 +394,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount) +- [Get-MgUserAppRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/get-mguserapproleassignmentcount) 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 41201e712163c..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 @@ -519,8 +519,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) +- [Invoke-MgFilterApplicationSynchronizationJobSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationjobschemaoperator) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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 81516ace766d4..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 @@ -527,8 +527,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) +- [Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterapplicationsynchronizationtemplateschemaoperator) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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 aea60a1df8dab..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 @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) +- [Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationjobschemaoperator) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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 bbc4cea328863..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 @@ -526,8 +526,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) +- [Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfilterserviceprincipalsynchronizationtemplateschemaoperator) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0) 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 70f4c86534d78..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 @@ -519,8 +519,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) +- [Invoke-MgFunctionApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationjobschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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 0338f827319d7..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 @@ -527,8 +527,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) +- [Invoke-MgFunctionApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionapplicationsynchronizationtemplateschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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 03b415756e29c..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 @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) +- [Invoke-MgFunctionServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationjobschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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 16e64068d1ff8..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 @@ -526,8 +526,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) +- [Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgfunctionserviceprincipalsynchronizationtemplateschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0) 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 9c85f2e4a2642..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 @@ -544,8 +544,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate) -- [](https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0) +- [Invoke-MgInstantiateApplicationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mginstantiateapplicationtemplate) +- [Graph API Reference](https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0) 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 f819fb800a93b..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 @@ -703,8 +703,8 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) +- [Invoke-MgParseApplicationSynchronizationJobSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationjobschemaexpression) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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 6001020394a53..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 @@ -705,8 +705,8 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) +- [Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseapplicationsynchronizationtemplateschemaexpression) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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 fd7e358eeabf9..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 @@ -712,8 +712,8 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) +- [Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationjobschemaexpression) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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 79156886831b5..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 @@ -712,8 +712,8 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) +- [Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/invoke-mgparseserviceprincipalsynchronizationtemplateschemaexpression) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0) 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 a769aca4da55d..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 @@ -2986,8 +2986,8 @@ WEB ``: webApplication ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication) -- [](https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0) +- [New-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplication) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0) 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 f14c5a533ee08..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 @@ -541,8 +541,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref) -- [](https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-1.0) +- [New-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationappmanagementpolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-1.0) 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 c973f552d75be..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 @@ -749,8 +749,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty) -- [](https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-1.0) +- [New-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationextensionproperty) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-1.0) 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 1385e3451b825..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 @@ -710,8 +710,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0) +- [New-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationfederatedidentitycredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-1.0) 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 f6518d3220b91..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 @@ -534,8 +534,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref) -- [](https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-1.0) +- [New-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationownerbyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-1.0) 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 a8fe94b0cbd48..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 @@ -1108,7 +1108,7 @@ Some settings are inherited from the template. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob) +- [New-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjob) 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 dcb90a292c07e..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 @@ -550,8 +550,8 @@ Worker for synchronization a user between Workday and either Active Directory or ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) +- [New-MgApplicationSynchronizationJobOnDemand](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobondemand) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) 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 ce431cecad763..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 @@ -778,7 +778,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory) +- [New-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationjobschemadirectory) 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 1eddb6546e2a6..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 @@ -979,7 +979,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate) +- [New-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplate) 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 d970b5c173da3..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 @@ -778,7 +778,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory) +- [New-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationsynchronizationtemplateschemadirectory) 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 06b8c07e30951..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 @@ -537,8 +537,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-1.0) +- [New-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenissuancepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-1.0) 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 368c9157dadf3..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 @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0) +- [New-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgapplicationtokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0) 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 827ae41e80737..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 @@ -804,8 +804,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment) -- [](https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0) +- [New-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mggroupapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0) 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 b3b2f00c4cfe7..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 @@ -3107,8 +3107,8 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0) +- [New-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipal) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0) 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 48f56db594cf9..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 @@ -786,8 +786,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-1.0) +- [New-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignedto) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-1.0) 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 2bf7a1be1fddd..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 @@ -786,8 +786,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-1.0) +- [New-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-1.0) 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 969b99055eee0..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 @@ -537,8 +537,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-1.0) +- [New-MgServicePrincipalClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalclaimmappingpolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-1.0) 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 70070a02e6f93..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 @@ -610,8 +610,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-1.0) +- [New-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaldelegatedpermissionclassification) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-1.0) 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 1ef2e4af972a6..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 @@ -662,7 +662,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint) +- [New-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalendpoint) 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 2b694aa9d8e9a..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 @@ -537,8 +537,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-1.0) +- [New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalhomerealmdiscoverypolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-1.0) 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 9b38882e04e94..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 @@ -534,8 +534,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-1.0) +- [New-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalownerbyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-1.0) 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 index 7828c130eb8fc..7df87e3f4516a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/New-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -549,8 +549,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-approvedclientapps?view=graph-rest-1.0) +- [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 915637d80e79c..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 @@ -550,8 +550,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-1.0) +- [New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-1.0) 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 57a04909e21f6..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 @@ -1136,8 +1136,8 @@ Some settings are inherited from the template. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-1.0) +- [New-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-1.0) 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 57f1ae0a43c9b..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 @@ -648,8 +648,8 @@ Worker for synchronization a user between Workday and either Active Directory or ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) +- [New-MgServicePrincipalSynchronizationJobOnDemand](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobondemand) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0) 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 5dacedfd88371..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 @@ -777,7 +777,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory) +- [New-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationjobschemadirectory) 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 5e39e76c8d5dc..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 @@ -979,7 +979,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate) +- [New-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplate) 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 7ee33da24c0c5..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 @@ -777,7 +777,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [New-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipalsynchronizationtemplateschemadirectory) 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 368e6e2994f55..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 @@ -512,7 +512,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref) +- [New-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenissuancepolicybyref) 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 d0f024b4c6d81..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 @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-1.0) +- [New-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mgserviceprincipaltokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-1.0) 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 1f0fa0bfa537e..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 @@ -782,8 +782,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment) -- [](https://learn.microsoft.com/graph/api/agentuser-post-approleassignments?view=graph-rest-1.0) +- [New-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/new-mguserapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/agentuser-post-approleassignments?view=graph-rest-1.0) 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 54836bf95d545..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 @@ -431,8 +431,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication) -- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) +- [Remove-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplication) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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 efff28effe95d..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 @@ -445,8 +445,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref) -- [](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) +- [Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationappmanagementpolicyappmanagementpolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) 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 new file mode 100644 index 0000000000000..2a6b774ae5b7e --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationAppManagementPolicyByRef.md @@ -0,0 +1,471 @@ +--- +document type: cmdlet +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: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgApplicationAppManagementPolicyByRef +--- + +# Remove-MgApplicationAppManagementPolicyByRef + +## SYNOPSIS + +Remove an appManagementPolicy policy object from an application or service principal object. +When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgApplicationAppManagementPolicyByRef -AppManagementPolicyId + -ApplicationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgApplicationAppManagementPolicyByRef -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 + +Remove an appManagementPolicy policy object from an application or service principal object. +When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgApplicationAppManagementPolicyByRef -ApplicationId $applicationId -AppManagementPolicyId $appManagementPolicyId + +``` +This example shows how to use the Remove-MgApplicationAppManagementPolicyByRef Cmdlet. + + +## PARAMETERS + +### -ApplicationId + +The unique identifier of application + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- ObjectId +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -AppManagementPolicyId + +The unique identifier of appManagementPolicy + +```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: '' +``` + +### -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-MgApplicationAppManagementPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationAppManagementPolicyByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 fbc8e2932d99e..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 @@ -413,8 +413,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid) -- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) +- [Remove-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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 881843dc3a618..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 @@ -413,8 +413,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename) -- [](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) +- [Remove-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationbyuniquename) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0) 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 2125e031e2c0a..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 @@ -452,8 +452,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty) -- [](https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-1.0) +- [Remove-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationextensionproperty) +- [Graph API Reference](https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-1.0) 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 d147e3b87537a..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) +- [Remove-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) 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 85ed76be9b3a6..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 @@ -429,8 +429,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) +- [Remove-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationfederatedidentitycredentialbyname) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-1.0) 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 34f73c7f28164..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 @@ -566,8 +566,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey) -- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-removekey?view=graph-rest-1.0) +- [Remove-MgApplicationKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationkey) +- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-removekey?view=graph-rest-1.0) 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 0b4ce90d305bc..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 @@ -410,7 +410,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo) +- [Remove-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationlogo) 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 new file mode 100644 index 0000000000000..34626afd41f4c --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationOwnerByRef.md @@ -0,0 +1,478 @@ +--- +document type: cmdlet +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: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgApplicationOwnerByRef +--- + +# Remove-MgApplicationOwnerByRef + +## SYNOPSIS + +Remove an owner from an application. +As a recommended best practice, apps should have at least two owners. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationOwnerDirectoryObjectByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgApplicationOwnerByRef -ApplicationId -DirectoryObjectId + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgApplicationOwnerByRef -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 + +Remove an owner from an application. +As a recommended best practice, apps should have at least two owners. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId + +``` +This example shows how to use the Remove-MgApplicationOwnerByRef Cmdlet. + + +## PARAMETERS + +### -ApplicationId + +The unique identifier of application + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- ObjectId +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: '' +``` + +### -DirectoryObjectId + +The unique identifier of directoryObject + +```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: '' +``` + +### -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: '' +``` + +### -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-MgApplicationOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationOwnerByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 e827589fe31dc..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 @@ -452,8 +452,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref) -- [](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) +- [Remove-MgApplicationOwnerDirectoryObjectByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationownerdirectoryobjectbyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-1.0) 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 986b803bb4621..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 @@ -535,8 +535,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword) -- [](https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0) +- [Remove-MgApplicationPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationpassword) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0) 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 a1ddd401229c3..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 @@ -408,7 +408,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization) +- [Remove-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronization) 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 3a6412be965c5..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob) +- [Remove-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjob) 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 64fe108a5f27d..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 @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload) +- [Remove-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkupload) 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 8d3c65d79cc6a..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 @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent) +- [Remove-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobbulkuploadcontent) 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 873ab3474b1e4..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema) +- [Remove-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschema) 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 b542c9ae819f1..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 @@ -451,7 +451,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory) +- [Remove-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationjobschemadirectory) 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 9f90b8e4d6863..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 @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate) +- [Remove-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplate) 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 a1b2b6b93ce65..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 @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema) +- [Remove-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschema) 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 dcf8f21828403..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 @@ -451,7 +451,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory) +- [Remove-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationsynchronizationtemplateschemadirectory) 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 new file mode 100644 index 0000000000000..6a9569cd5d858 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenIssuancePolicyByRef.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-MgApplicationTokenIssuancePolicyByRef +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgApplicationTokenIssuancePolicyByRef +--- + +# Remove-MgApplicationTokenIssuancePolicyByRef + +## SYNOPSIS + +Remove a tokenIssuancePolicy from an application. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId + -TokenIssuancePolicyId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgApplicationTokenIssuancePolicyByRef -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 + +Remove a tokenIssuancePolicy from an application. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId + +``` +This example shows how to use the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet. + + +## PARAMETERS + +### -ApplicationId + +The unique identifier of application + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- ObjectId +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: '' +``` + +### -TokenIssuancePolicyId + +The unique identifier of tokenIssuancePolicy + +```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-MgApplicationTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenIssuancePolicyByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 bb92801291ad9..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) +- [Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenissuancepolicytokenissuancepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-1.0) 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 new file mode 100644 index 0000000000000..9c60beb82eaa7 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgApplicationTokenLifetimePolicyByRef.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-MgApplicationTokenLifetimePolicyByRef +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgApplicationTokenLifetimePolicyByRef +--- + +# Remove-MgApplicationTokenLifetimePolicyByRef + +## SYNOPSIS + +Remove a tokenLifetimePolicy from an application. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId + -TokenLifetimePolicyId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgApplicationTokenLifetimePolicyByRef -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 + +Remove a tokenLifetimePolicy from an application. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId + +``` +This example shows how to use the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet. + + +## PARAMETERS + +### -ApplicationId + +The unique identifier of application + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- ObjectId +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: '' +``` + +### -TokenLifetimePolicyId + +The unique identifier of tokenLifetimePolicy + +```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-MgApplicationTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgApplicationTokenLifetimePolicyByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 80967b10168b7..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) +- [Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgapplicationtokenlifetimepolicytokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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 c3c5281f1656c..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 @@ -449,8 +449,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment) -- [](https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0) +- [Remove-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mggroupapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0) 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 0452f63917eb8..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 @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) +- [Remove-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipal) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) 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 2a9d4342b811c..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 @@ -450,8 +450,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-1.0) +- [Remove-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignedto) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-1.0) 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 86995e0e1253b..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 @@ -450,8 +450,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-1.0) +- [Remove-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-1.0) 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 a09d8c9dc1c4d..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 @@ -409,8 +409,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) +- [Remove-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0) 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 new file mode 100644 index 0000000000000..f19d064d4e07d --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalClaimMappingPolicyByRef.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-MgServicePrincipalClaimMappingPolicyByRef +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgServicePrincipalClaimMappingPolicyByRef +--- + +# Remove-MgServicePrincipalClaimMappingPolicyByRef + +## SYNOPSIS + +Remove a claimsMappingPolicy from a servicePrincipal. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgServicePrincipalClaimMappingPolicyByRef -ClaimsMappingPolicyId + -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgServicePrincipalClaimMappingPolicyByRef + -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 + +Remove a claimsMappingPolicy from a servicePrincipal. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId + +``` +This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. + + +## 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: '' +``` + +### -ClaimsMappingPolicyId + +The unique identifier of claimsMappingPolicy + +```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: '' +``` + +### -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-MgServicePrincipalClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalClaimMappingPolicyByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 ee874d0902d84..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) +- [Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalclaimmappingpolicyclaimmappingpolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-1.0) 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 3069b63e1d2b9..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 @@ -450,8 +450,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-1.0) +- [Remove-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaldelegatedpermissionclassification) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-1.0) 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 141b6530e60bf..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 @@ -428,7 +428,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint) +- [Remove-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalendpoint) 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 new file mode 100644 index 0000000000000..a42f18064aab6 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.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-MgServicePrincipalHomeRealmDiscoveryPolicyByRef +Locale: en-US +Module Name: Microsoft.Graph.Applications +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef +--- + +# Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef + +## SYNOPSIS + +Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef + -HomeRealmDiscoveryPolicyId -ServicePrincipalId [-IfMatch ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef + -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 + +Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.All, Application.ReadWrite.OwnedBy, Policy.Read.All, Policy.ReadWrite.ApplicationConfiguration, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId + +``` +This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. + + +## 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: '' +``` + +### -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: '' +``` + +### -HomeRealmDiscoveryPolicyId + +The unique identifier of homeRealmDiscoveryPolicy + +```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: '' +``` + +### -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-MgServicePrincipalHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 82b6626bcb585..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) +- [Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalhomerealmdiscoverypolicyhomerealmdiscoverypolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-1.0) 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 1ce3664a6e7fe..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 @@ -564,8 +564,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0) +- [Remove-MgServicePrincipalKey](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0) 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 new file mode 100644 index 0000000000000..4ffbe38697f3d --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalOwnerByRef.md @@ -0,0 +1,482 @@ +--- +document type: cmdlet +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: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgServicePrincipalOwnerByRef +--- + +# Remove-MgServicePrincipalOwnerByRef + +## SYNOPSIS + +Remove an owner from a servicePrincipal object. +As a recommended best practice, service principals should have at least two owners. + +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef](/powershell/module/Microsoft.Graph.Beta.Applications/Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef?view=graph-powershell-beta) + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgServicePrincipalOwnerByRef -DirectoryObjectId + -ServicePrincipalId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgServicePrincipalOwnerByRef -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 + +Remove an owner from a servicePrincipal object. +As a recommended best practice, service principals should have at least two owners. + +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, | + +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Applications + +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" +} + +Remove-MgServicePrincipalOwnerByRef -ServicePrincipalId $servicePrincipalId -DirectoryObjectId $directoryObjectId -BodyParameter $params + +``` +This example shows how to use the Remove-MgServicePrincipalOwnerByRef Cmdlet. + + +## 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: '' +``` + +### -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: '' +``` + +### -DirectoryObjectId + +The unique identifier of directoryObject + +```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: '' +``` + +### -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-MgServicePrincipalOwnerByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/Remove-MgServicePrincipalOwnerByRef) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + 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 8cd96356db059..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 @@ -456,8 +456,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) +- [Remove-MgServicePrincipalOwnerDirectoryObjectByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalownerdirectoryobjectbyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-1.0) 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 9c1b01464811c..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 @@ -531,8 +531,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0) +- [Remove-MgServicePrincipalPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalpassword) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0) 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 6a35ce0a0de6d..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 @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-1.0) +- [Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfiguration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-1.0) 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 index e4b0791756f87..350fca0407e22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-approvedclientapps?view=graph-rest-1.0) +- [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 bbf6ce1e965bf..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 @@ -440,8 +440,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-1.0) +- [Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-1.0) 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 e46303c05f85d..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 @@ -407,7 +407,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization) +- [Remove-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronization) 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 366d0988f9579..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 @@ -452,8 +452,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-1.0) +- [Remove-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-1.0) 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 2467712b8dde9..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload) +- [Remove-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkupload) 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 5144268fc1a0d..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent) +- [Remove-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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 6d0719bc216f2..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 @@ -437,7 +437,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema) +- [Remove-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschema) 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 1feebae122d5d..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 @@ -450,7 +450,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory) +- [Remove-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationjobschemadirectory) 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 13267ab893b9d..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate) +- [Remove-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplate) 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 0621d8b8b3f6c..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 @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema) +- [Remove-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschema) 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 32e7d5bd68199..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 @@ -450,7 +450,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalsynchronizationtemplateschemadirectory) 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 98608dee2000f..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 @@ -428,7 +428,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref) +- [Remove-MgServicePrincipalTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicybyref) 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 73ade9c56423f..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 @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref) +- [Remove-MgServicePrincipalTokenIssuancePolicyTokenIssuancePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenissuancepolicytokenissuancepolicybyref) 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 61828741d22b2..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 @@ -428,8 +428,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) +- [Remove-MgServicePrincipalTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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 c63d6c52f4e29..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 @@ -451,8 +451,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) +- [Remove-MgServicePrincipalTokenLifetimePolicyTokenLifetimePolicyByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mgserviceprincipaltokenlifetimepolicytokenlifetimepolicybyref) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-1.0) 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 8092e83d27630..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 @@ -447,8 +447,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment) -- [](https://learn.microsoft.com/graph/api/user-delete-approleassignments?view=graph-rest-1.0) +- [Remove-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/remove-mguserapproleassignment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/user-delete-approleassignments?view=graph-rest-1.0) 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 d53e1cfc5ba9c..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 @@ -547,8 +547,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) +- [Restart-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgapplicationsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) 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 0dd5822448816..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 @@ -575,8 +575,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) +- [Restart-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/restart-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0) 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 9d95131c2a8b9..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 @@ -470,7 +470,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo) +- [Set-MgApplicationLogo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationlogo) 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 ab37e5ae30334..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 @@ -1202,7 +1202,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization) +- [Set-MgApplicationSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronization) 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 140cd86bcc8bd..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 @@ -483,7 +483,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent) +- [Set-MgApplicationSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationjobbulkuploadcontent) 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 090da39b41189..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 @@ -499,7 +499,7 @@ VALUE : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret) +- [Set-MgApplicationSynchronizationSecret](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationsynchronizationsecret) 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 877607c9451a3..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 @@ -530,8 +530,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher) -- [](https://learn.microsoft.com/graph/api/agentidentityblueprint-setverifiedpublisher?view=graph-rest-1.0) +- [Set-MgApplicationVerifiedPublisher](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgapplicationverifiedpublisher) +- [Graph API Reference](https://learn.microsoft.com/graph/api/agentidentityblueprint-setverifiedpublisher?view=graph-rest-1.0) 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 4557c835062b4..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 @@ -1202,7 +1202,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization) +- [Set-MgServicePrincipalSynchronization](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronization) 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 0fe13bdc2f1c9..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 @@ -482,7 +482,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent) +- [Set-MgServicePrincipalSynchronizationJobBulkUploadContent](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationjobbulkuploadcontent) 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 3803a0878c833..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 @@ -540,8 +540,8 @@ VALUE : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret) -- [](https://learn.microsoft.com/graph/api/synchronization-serviceprincipal-put-synchronization?view=graph-rest-1.0) +- [Set-MgServicePrincipalSynchronizationSecret](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/set-mgserviceprincipalsynchronizationsecret) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-serviceprincipal-put-synchronization?view=graph-rest-1.0) 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 d0b3dacbd8294..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 @@ -416,8 +416,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) +- [Start-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgapplicationsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) 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 cf55b3fb4559d..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 @@ -437,8 +437,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) +- [Start-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/start-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0) 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 99cc1cf8e9f17..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 @@ -410,8 +410,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) +- [Suspend-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgapplicationsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) 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 5731739a3e53c..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 @@ -431,8 +431,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) +- [Suspend-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/suspend-mgserviceprincipalsynchronizationjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0) 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 d469d9434dfb9..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 @@ -470,8 +470,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) +- [Test-MgApplicationSynchronizationJobCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgapplicationsynchronizationjobcredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) 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 d971a20fd38b3..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 @@ -470,8 +470,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) +- [Test-MgServicePrincipalSynchronizationJobCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/test-mgserviceprincipalsynchronizationjobcredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0) 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 30fdacfae9f6b..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 @@ -3448,8 +3448,8 @@ WEB ``: webApplication ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication) -- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) +- [Update-MgApplication](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplication) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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 102c6f47cb2e4..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 @@ -3428,8 +3428,8 @@ WEB ``: webApplication ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid) -- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) +- [Update-MgApplicationByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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 f52cc6f49bb15..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 @@ -3460,8 +3460,8 @@ WEB ``: webApplication ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename) -- [](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) +- [Update-MgApplicationByUniqueName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationbyuniquename) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0) 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 e6864724ea79d..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 @@ -747,7 +747,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty) +- [Update-MgApplicationExtensionProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationextensionproperty) 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 d54fe9ee050a9..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 @@ -738,8 +738,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) +- [Update-MgApplicationFederatedIdentityCredential](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredential) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) 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 eaa0664b7b325..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 @@ -707,8 +707,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname) -- [](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) +- [Update-MgApplicationFederatedIdentityCredentialByName](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationfederatedidentitycredentialbyname) +- [Graph API Reference](https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-1.0) 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 b02c4f6107e73..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 @@ -1135,7 +1135,7 @@ Some settings are inherited from the template. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob) +- [Update-MgApplicationSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjob) 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 2a99963263aee..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 @@ -512,7 +512,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload) +- [Update-MgApplicationSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobbulkupload) 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 9a77693f5cb39..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 @@ -875,7 +875,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema) +- [Update-MgApplicationSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschema) 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 c497b67cbf5df..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 @@ -806,7 +806,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory) +- [Update-MgApplicationSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationjobschemadirectory) 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 677d029a534ac..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 @@ -1015,8 +1015,8 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-1.0) +- [Update-MgApplicationSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplate) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-1.0) 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 8f137ac2833b5..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 @@ -875,7 +875,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema) +- [Update-MgApplicationSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschema) 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 9b59efdaae7d2..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 @@ -807,7 +807,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory) +- [Update-MgApplicationSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgapplicationsynchronizationtemplateschemadirectory) 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 44a48f51ca9f5..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 @@ -780,7 +780,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment) +- [Update-MgGroupAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mggroupapproleassignment) 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 ad6d1ddd7a096..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 @@ -3588,8 +3588,8 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) +- [Update-MgServicePrincipal](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipal) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) 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 f6987dec7ec02..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 @@ -781,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto) +- [Update-MgServicePrincipalAppRoleAssignedTo](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignedto) 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 43a537c85ad5f..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 @@ -781,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment) +- [Update-MgServicePrincipalAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalapproleassignment) 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 4293505847f4e..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 @@ -3597,8 +3597,8 @@ VERIFIEDPUBLISHER ``: verifiedPublisher ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid) -- [](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) +- [Update-MgServicePrincipalByAppId](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalbyappid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0) 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 4e899a9c67a32..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 @@ -612,7 +612,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification) +- [Update-MgServicePrincipalDelegatedPermissionClassification](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipaldelegatedpermissionclassification) 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 631242ea3c3ef..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 @@ -690,7 +690,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint) +- [Update-MgServicePrincipalEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalendpoint) 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 902f758900338..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 @@ -628,8 +628,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration) -- [](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-1.0) +- [Update-MgServicePrincipalRemoteDesktopSecurityConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfiguration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-1.0) 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 index 9b80791745bc2..86f58b4c16ac4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Update-MgServicePrincipalRemoteDesktopSecurityConfigurationApprovedClientApp.md @@ -575,8 +575,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationapprovedclientapp) -- [](https://learn.microsoft.com/graph/api/approvedclientapp-update?view=graph-rest-1.0) +- [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 94950022289e5..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 @@ -577,8 +577,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) -- [](https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-1.0) +- [Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalremotedesktopsecurityconfigurationtargetdevicegroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-1.0) 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 89adb4342655c..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 @@ -1143,7 +1143,7 @@ Some settings are inherited from the template. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob) +- [Update-MgServicePrincipalSynchronizationJob](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjob) 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 9cb4990a0c987..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 @@ -511,7 +511,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload) +- [Update-MgServicePrincipalSynchronizationJobBulkUpload](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobbulkupload) 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 8c84d7cfe8491..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 @@ -880,8 +880,8 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema) -- [](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-1.0) +- [Update-MgServicePrincipalSynchronizationJobSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschema) +- [Graph API Reference](https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-1.0) 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 4c694da0ba6c9..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 @@ -805,7 +805,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory) +- [Update-MgServicePrincipalSynchronizationJobSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationjobschemadirectory) 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 5da4d24e83d14..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 @@ -1007,7 +1007,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate) +- [Update-MgServicePrincipalSynchronizationTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplate) 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 0e94033cf9a83..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 @@ -874,7 +874,7 @@ Must match one of the directory definitions in synchronizationSchema. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema) +- [Update-MgServicePrincipalSynchronizationTemplateSchema](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschema) 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 4c07c8e2de337..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 @@ -806,7 +806,7 @@ Not nullable. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory) +- [Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mgserviceprincipalsynchronizationtemplateschemadirectory) 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 ebfbb4c29b86c..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 @@ -780,7 +780,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment) +- [Update-MgUserAppRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.applications/update-mguserapproleassignment)