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/16] 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/16] 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/16] 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/16] 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/16] 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/16] 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/16] 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/16] 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/16] 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 cc12c8bbcd22989b1df10aa1f7494dc23c807810 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:46:18 +0000 Subject: [PATCH 10/16] Updated markdown help --- .../Get-MgCompliance.md | 42 +-- .../Get-MgPrivacySubjectRightsRequest.md | 56 +-- ...t-MgPrivacySubjectRightsRequestApprover.md | 47 +-- ...ightsRequestApproverByUserPrincipalName.md | 46 +-- ...rivacySubjectRightsRequestApproverCount.md | 46 +-- ...jectRightsRequestApproverMailboxSetting.md | 46 +-- ...RequestApproverServiceProvisioningError.md | 42 +-- ...stApproverServiceProvisioningErrorCount.md | 46 +-- ...PrivacySubjectRightsRequestCollaborator.md | 47 +-- ...sRequestCollaboratorByUserPrincipalName.md | 46 +-- ...cySubjectRightsRequestCollaboratorCount.md | 46 +-- ...RightsRequestCollaboratorMailboxSetting.md | 46 +-- ...estCollaboratorServiceProvisioningError.md | 42 +-- ...llaboratorServiceProvisioningErrorCount.md | 46 +-- .../Get-MgPrivacySubjectRightsRequestCount.md | 46 +-- ...vacySubjectRightsRequestFinalAttachment.md | 52 +-- ...gPrivacySubjectRightsRequestFinalReport.md | 44 +-- .../Get-MgPrivacySubjectRightsRequestNote.md | 46 +-- ...-MgPrivacySubjectRightsRequestNoteCount.md | 50 +-- .../Get-MgPrivacySubjectRightsRequestTeam.md | 46 +-- .../Microsoft.Graph.Compliance.md | 21 +- .../New-MgPrivacySubjectRightsRequest.md | 314 ++++++++++++----- .../New-MgPrivacySubjectRightsRequestNote.md | 52 +-- .../Remove-MgPrivacySubjectRightsRequest.md | 44 +-- ...emove-MgPrivacySubjectRightsRequestNote.md | 44 +-- .../Update-MgCompliance.md | 44 +-- .../Update-MgPrivacySubjectRightsRequest.md | 320 +++++++++++++----- ...jectRightsRequestApproverMailboxSetting.md | 56 ++- ...RightsRequestCollaboratorMailboxSetting.md | 56 ++- ...pdate-MgPrivacySubjectRightsRequestNote.md | 54 +-- 30 files changed, 839 insertions(+), 1094 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md index 1724009a6a73a..c204390389239 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCompliance --- @@ -15,9 +15,6 @@ title: Get-MgCompliance Get compliance -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCompliance](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaCompliance?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get compliance Get-MgCompliance [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get compliance +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -276,27 +283,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCompliance](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index f73f497f4b168..5f8b06104a0fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequest --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequest Read the properties and relationships of a subjectRightsRequest object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPrivacySubjectRightsRequest [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgPrivacySubjectRightsRequest [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgPrivacySubjectRightsRequest -SubjectRightsRequestId [-ExpandPrope Get-MgPrivacySubjectRightsRequest -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,27 +55,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a subjectRightsRequest object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequest -``` -This example shows how to use the Get-MgPrivacySubjectRightsRequest Cmdlet. - - ## PARAMETERS ### -All @@ -539,7 +523,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -548,28 +532,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md index 6803a29548803..447def9c02aef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApprover --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestApprover Collection of users who can approve the request. Currently only supported for requests of type delete. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApprover](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApprover?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgPrivacySubjectRightsRequestApprover -SubjectRightsRequestId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgPrivacySubjectRightsRequestApprover -SubjectRightsRequestId -User [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgPrivacySubjectRightsRequestApprover -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +59,16 @@ This cmdlet has the following aliases, Collection of users who can approve the request. Currently only supported for requests of type delete. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -550,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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -559,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApprover](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md index b75fc6b1f4e77..a5459c4f9056b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName Collection of users who can approve the request. Currently only supported for requests of type delete. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverByUserPrincipalName](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverByUserPrincipalName?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName -SubjectRightsReque -UserPrincipalName [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, Collection of users who can approve the request. Currently only supported for requests of type delete. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -360,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -369,27 +376,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md index bea9f23c92706..56f401e990f83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApproverCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestApproverCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPrivacySubjectRightsRequestApproverCount -SubjectRightsRequestId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPrivacySubjectRightsRequestApproverCount -SubjectRightsRequestId Get-MgPrivacySubjectRightsRequestApproverCount -InputObject [-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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -342,27 +349,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApproverCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index b22d88c2efa12..bc638abf03fac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApproverMailboxSetting --- @@ -17,9 +17,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgPrivacySubjectRightsRequestApproverMailboxSetting -SubjectRightsRequestId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgPrivacySubjectRightsRequestApproverMailboxSetting -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,6 +50,16 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -362,7 +369,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -371,27 +378,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApproverMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md index 51c12173553d7..e3bcb3ff6da22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError -SubjectRights [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -43,6 +40,16 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -495,27 +502,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md index ce075dd6127b8..a362a1c21ed89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount -SubjectRightsRequestId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount -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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md index a8281de8041b4..7252a348b91d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaborator --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestCollaborator Collection of users who can collaborate on the request. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaborator](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaborator?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgPrivacySubjectRightsRequestCollaborator -SubjectRightsRequestId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgPrivacySubjectRightsRequestCollaborator -SubjectRightsRequestId - [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgPrivacySubjectRightsRequestCollaborator -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Collection of users who can collaborate on the request. +## 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -557,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaborator](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md index 05122357ee14d..3bb8d6c37335c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName Collection of users who can collaborate on the request. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorByUserPrincipalName](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorByUserPrincipalName?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName -SubjectRightsR -UserPrincipalName [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Collection of users who can collaborate on the request. +## 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -367,27 +374,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md index 1e120b6139388..5b7e2a7ecbe21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaboratorCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorCount -SubjectRightsRequestId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorCount -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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -344,27 +351,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaboratorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index c75a3d790370a..ed4e858d28cfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting --- @@ -17,9 +17,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -SubjectRightsReques -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,6 +50,16 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -362,7 +369,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -371,27 +378,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md index 85fdf87be2730..1f221d8a53be6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -43,6 +40,16 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -495,27 +502,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md index e75734b5977e8..e36fe017b04bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCoun Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount -SubjectRightsRequestId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount -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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -365,27 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index eb3af3ab715c9..cfc9937209c32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPrivacySubjectRightsRequestCount [-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) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index 09178a3d964a9..36f09cf7ea7d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestFinalAttachment --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestFinalAttachment Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestFinalAttachment](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestFinalAttachment?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ The attachment is a zip file that contains all the files that were included by t Get-MgPrivacySubjectRightsRequestFinalAttachment -SubjectRightsRequestId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgPrivacySubjectRightsRequestFinalAttachment -SubjectRightsRequestId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestFinalAttachment -SubjectRightsRequestId $subjectRightsRequestId -``` -This example shows how to use the Get-MgPrivacySubjectRightsRequestFinalAttachment Cmdlet. - - ## PARAMETERS ### -Break @@ -356,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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -365,27 +349,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestFinalAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md index bd1294417d8ca..e17eb81e5fb15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestFinalReport --- @@ -16,9 +16,6 @@ title: Get-MgPrivacySubjectRightsRequestFinalReport Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestFinalReport](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestFinalReport?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ The report is a text file that contains information about the files that were in Get-MgPrivacySubjectRightsRequestFinalReport -SubjectRightsRequestId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgPrivacySubjectRightsRequestFinalReport -SubjectRightsRequestId -O Get-MgPrivacySubjectRightsRequestFinalReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,18 +47,13 @@ Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestFinalReport -SubjectRightsRequestId $subjectRightsRequestId -``` -This example shows how to use the Get-MgPrivacySubjectRightsRequestFinalReport Cmdlet. - - ## PARAMETERS ### -Break @@ -348,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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -357,27 +349,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestFinalReport](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md index 68e4bcd7994f2..2670c607ac88f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestNote --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestNote List of notes associated with the request. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPrivacySubjectRightsRequestNote -AuthoredNoteId -SubjectRightsReq [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgPrivacySubjectRightsRequestNote -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,18 +58,13 @@ This cmdlet has the following aliases, List of notes associated with the request. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId $subjectRightsRequestId -``` -This example shows how to use the Get-MgPrivacySubjectRightsRequestNote 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -569,27 +561,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index 90dd06c3dc6f6..7a30ec00069fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestNoteCount --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestNoteCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestNoteCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestNoteCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPrivacySubjectRightsRequestNoteCount -SubjectRightsRequestId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPrivacySubjectRightsRequestNoteCount -SubjectRightsRequestId [-Fi Get-MgPrivacySubjectRightsRequestNoteCount -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) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | +{{ 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -350,27 +349,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestNoteCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md index 6cdb4d4bfd732..5e74d43984ea1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPrivacySubjectRightsRequestTeam --- @@ -15,9 +15,6 @@ title: Get-MgPrivacySubjectRightsRequestTeam Information about the Microsoft Teams team that was created for the request. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestTeam](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestTeam?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Information about the Microsoft Teams team that was created for the request. Get-MgPrivacySubjectRightsRequestTeam -SubjectRightsRequestId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgPrivacySubjectRightsRequestTeam -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Information about the Microsoft Teams team that was created for the request. +## 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -345,27 +352,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPrivacySubjectRightsRequestTeam](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md index 2093dc9e32038..c6f25313edc8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.Compliance -Module Guid: a8db4713-edf1-49db-bc71-38c917013835 +Module Guid: 75eca4a1-b0cd-40ea-bb75-90c8d2456148 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.compliance/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -77,22 +77,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgPrivacySubjectRightsRequestNote](Update-MgPrivacySubjectRightsRequestNote.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md index bd06a79fc2f1c..843c2cdef5c19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPrivacySubjectRightsRequest --- @@ -15,9 +15,6 @@ title: New-MgPrivacySubjectRightsRequest Create a new subjectRightsRequest object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/New-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -39,7 +36,6 @@ New-MgPrivacySubjectRightsRequest [-ResponseHeadersVariable ] [-Status ] [-Team ] [-Type ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -49,7 +45,6 @@ New-MgPrivacySubjectRightsRequest -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -62,9 +57,8 @@ This cmdlet has the following aliases, Create a new subjectRightsRequest object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance @@ -101,10 +95,6 @@ approvers = @( New-MgPrivacySubjectRightsRequest -BodyParameter $params -``` -This example shows how to use the New-MgPrivacySubjectRightsRequest Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1296,11 +1286,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1928,7 +1921,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1996,7 +1989,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2033,6 +2027,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -4008,7 +4043,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -4213,6 +4249,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5993,7 +6030,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -6254,8 +6291,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6265,14 +6302,14 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -ASSIGNEDTO ``: identity +ASSIGNEDTO : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: subjectRightsRequest +BODYPARAMETER : subjectRightsRequest [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6540,11 +6577,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -7172,7 +7212,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -7240,7 +7280,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -7277,6 +7318,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -9252,7 +9334,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -9457,6 +9540,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -11237,7 +11321,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -11498,8 +11582,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11849,11 +11933,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -12481,7 +12568,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -12549,7 +12636,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -12586,6 +12674,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -14561,7 +14690,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -14766,6 +14896,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -16546,7 +16677,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -16807,8 +16938,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -16818,7 +16949,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -16829,7 +16960,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -DATASUBJECT ``: dataSubject +DATASUBJECT : dataSubject [(Any) ]: This indicates any property can be added to this object. [Email ]: Email of the data subject. [FirstName ]: First name of the data subject. @@ -16853,7 +16984,7 @@ For example, in the access reviews decisions API, this property might record the [StageStatus ]: subjectRightsRequestStageStatus [Type ]: Type of history. -INSIGHT ``: subjectRightsRequestDetail +INSIGHT : subjectRightsRequestDetail [(Any) ]: This indicates any property can be added to this object. [ExcludedItemCount ]: Count of items that are excluded from the request. [InsightCounts ]: Count of items per insight. @@ -16865,7 +16996,7 @@ INSIGHT ``: subjectRightsRequestDetai [SignedOffItemCount ]: Count of items signed off by the administrator. [TotalItemSize ]: Total item size in bytes. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -16912,7 +17043,7 @@ STAGES : Information about the [Stage ]: subjectRightsRequestStage [Status ]: subjectRightsRequestStageStatus -TEAM ``: team +TEAM : team [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -17233,11 +17364,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -17826,7 +17960,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -17894,7 +18028,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -17931,6 +18066,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -20684,6 +20860,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -20974,7 +21151,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -21235,8 +21412,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -21830,7 +22007,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -22147,27 +22325,5 @@ This URL should be treated as an opaque blob, and not parsed. ## RELATED LINKS -- [New-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md index a3831d5e2281a..d4e61e9bfa511 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPrivacySubjectRightsRequestNote --- @@ -15,9 +15,6 @@ title: New-MgPrivacySubjectRightsRequestNote Create a new authoredNote object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/New-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId [-CreatedDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,6 @@ New-MgPrivacySubjectRightsRequestNote -InputObject [-CreatedDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgPrivacySubjectRightsRequestNote -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,9 +69,8 @@ This cmdlet has the following aliases, Create a new authoredNote object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance @@ -89,10 +83,6 @@ $params = @{ New-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId $subjectRightsRequestId -BodyParameter $params -``` -This example shows how to use the New-MgPrivacySubjectRightsRequestNote Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -565,14 +555,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHOR ``: identity +AUTHOR : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: authoredNote +BODYPARAMETER : authoredNote [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -590,12 +580,12 @@ For example, in the access reviews decisions API, this property might record the The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -CONTENT ``: itemBody +CONTENT : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -604,27 +594,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-post-notes?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post-notes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md index db3fc1c6fe065..6206d2a19ad51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPrivacySubjectRightsRequest --- @@ -15,9 +15,6 @@ title: Remove-MgPrivacySubjectRightsRequest Delete navigation property subjectRightsRequests for privacy -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Remove-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPrivacySubjectRightsRequest -SubjectRightsRequestId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPrivacySubjectRightsRequest -InputObject [-IfMatc [-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 subjectRightsRequests for privacy +## 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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -388,27 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md index aaae4183ad398..b8761945a2ab4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPrivacySubjectRightsRequestNote --- @@ -15,9 +15,6 @@ title: Remove-MgPrivacySubjectRightsRequestNote Delete navigation property notes for privacy -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Remove-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPrivacySubjectRightsRequestNote -AuthoredNoteId -SubjectRights [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPrivacySubjectRightsRequestNote -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 notes for privacy +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AuthoredNoteId @@ -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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -409,27 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md index cfcdfcad7331f..e04faa7c5a27a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCompliance --- @@ -15,9 +15,6 @@ title: Update-MgCompliance Update compliance -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCompliance](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaCompliance?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -26,7 +23,7 @@ Update compliance Update-MgCompliance [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -35,7 +32,7 @@ Update-MgCompliance [-ResponseHeadersVariable ] [-AdditionalProperties < Update-MgCompliance -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Update compliance +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -331,27 +338,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Update-MgCompliance](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md index 0d9cebe1baa3b..4c2ad65dffff3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPrivacySubjectRightsRequest --- @@ -15,9 +15,6 @@ title: Update-MgPrivacySubjectRightsRequest Update the properties of a subjectRightsRequest object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -39,7 +36,6 @@ Update-MgPrivacySubjectRightsRequest -SubjectRightsRequestId [-Status ] [-Team ] [-Type ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -49,7 +45,7 @@ Update-MgPrivacySubjectRightsRequest -SubjectRightsRequestId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -71,7 +67,6 @@ Update-MgPrivacySubjectRightsRequest -InputObject [-Status ] [-Team ] [-Type ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -81,7 +76,7 @@ Update-MgPrivacySubjectRightsRequest -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -94,9 +89,8 @@ This cmdlet has the following aliases, Update the properties of a subjectRightsRequest object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Compliance @@ -107,10 +101,6 @@ $params = @{ Update-MgPrivacySubjectRightsRequest -SubjectRightsRequestId $subjectRightsRequestId -BodyParameter $params -``` -This example shows how to use the Update-MgPrivacySubjectRightsRequest Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1547,11 +1537,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -2179,7 +2172,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -2247,7 +2240,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2284,6 +2278,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -4259,7 +4294,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -4464,6 +4500,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -6244,7 +6281,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -6505,8 +6542,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6516,14 +6553,14 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -ASSIGNEDTO ``: identity +ASSIGNEDTO : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: subjectRightsRequest +BODYPARAMETER : subjectRightsRequest [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6791,11 +6828,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -7423,7 +7463,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -7491,7 +7531,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -7528,6 +7569,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -9503,7 +9585,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -9708,6 +9791,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -11488,7 +11572,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -11749,8 +11833,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -12100,11 +12184,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -12732,7 +12819,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -12800,7 +12887,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -12837,6 +12925,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -14812,7 +14941,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -15017,6 +15147,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -16797,7 +16928,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -17058,8 +17189,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -17069,7 +17200,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -17080,7 +17211,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -DATASUBJECT ``: dataSubject +DATASUBJECT : dataSubject [(Any) ]: This indicates any property can be added to this object. [Email ]: Email of the data subject. [FirstName ]: First name of the data subject. @@ -17104,13 +17235,13 @@ For example, in the access reviews decisions API, this property might record the [StageStatus ]: subjectRightsRequestStageStatus [Type ]: Type of history. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -INSIGHT ``: subjectRightsRequestDetail +INSIGHT : subjectRightsRequestDetail [(Any) ]: This indicates any property can be added to this object. [ExcludedItemCount ]: Count of items that are excluded from the request. [InsightCounts ]: Count of items per insight. @@ -17122,7 +17253,7 @@ INSIGHT ``: subjectRightsRequestDetai [SignedOffItemCount ]: Count of items signed off by the administrator. [TotalItemSize ]: Total item size in bytes. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -17169,7 +17300,7 @@ STAGES : Information about the [Stage ]: subjectRightsRequestStage [Status ]: subjectRightsRequestStageStatus -TEAM ``: team +TEAM : team [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -17490,11 +17621,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -18083,7 +18217,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -18151,7 +18285,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -18188,6 +18323,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -20941,6 +21117,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -21231,7 +21408,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -21492,8 +21669,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -22087,7 +22264,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -22404,27 +22582,5 @@ This URL should be treated as an opaque blob, and not parsed. ## RELATED LINKS -- [Update-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest) +- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index fc3fbb8e541ac..17b2bbd91500a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPrivacySubjectRightsRequestApproverMailboxSetting --- @@ -15,9 +15,6 @@ title: Update-MgPrivacySubjectRightsRequestApproverMailboxSetting Update property mailboxSettings value. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgPrivacySubjectRightsRequestApproverMailboxSetting -SubjectRightsRequest [-UserPurpose ] [-WorkingHours ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,6 @@ Update-MgPrivacySubjectRightsRequestApproverMailboxSetting -SubjectRightsRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -56,7 +52,6 @@ Update-MgPrivacySubjectRightsRequestApproverMailboxSetting -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -66,7 +61,7 @@ Update-MgPrivacySubjectRightsRequestApproverMailboxSetting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,6 +73,16 @@ This cmdlet has the following aliases, Update property mailboxSettings value. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -710,7 +715,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTOMATICREPLIESSETTING ``: automaticRepliesSetting +AUTOMATICREPLIESSETTING : automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -723,7 +728,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER ``: mailboxSettings +BODYPARAMETER : mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -759,20 +764,20 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE ``: localeInfo +LANGUAGE : localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS ``: workingHours +WORKINGHOURS : workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -785,27 +790,4 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [Update-MgPrivacySubjectRightsRequestApproverMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index 03e08811ac11c..cdf5dd7e4524c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting --- @@ -15,9 +15,6 @@ title: Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting Update property mailboxSettings value. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -SubjectRightsReq [-UserPurpose ] [-WorkingHours ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,6 @@ Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -SubjectRightsReq [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -56,7 +52,6 @@ Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -66,7 +61,7 @@ Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,6 +73,16 @@ This cmdlet has the following aliases, Update property mailboxSettings value. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -710,7 +715,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTOMATICREPLIESSETTING ``: automaticRepliesSetting +AUTOMATICREPLIESSETTING : automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -723,7 +728,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER ``: mailboxSettings +BODYPARAMETER : mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -759,20 +764,20 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE ``: localeInfo +LANGUAGE : localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS ``: workingHours +WORKINGHOURS : workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -785,27 +790,4 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md index dfb544e06ca90..0686f14ea37a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Compliance-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote Locale: en-US Module Name: Microsoft.Graph.Compliance -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPrivacySubjectRightsRequestNote --- @@ -15,9 +15,6 @@ title: Update-MgPrivacySubjectRightsRequestNote Update the navigation property notes in privacy -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgPrivacySubjectRightsRequestNote -AuthoredNoteId -SubjectRights [-CreatedDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,7 @@ Update-MgPrivacySubjectRightsRequestNote -AuthoredNoteId -SubjectRights -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,6 @@ Update-MgPrivacySubjectRightsRequestNote -InputObject [-CreatedDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +56,7 @@ Update-MgPrivacySubjectRightsRequestNote -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 notes in privacy +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -572,14 +577,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHOR ``: identity +AUTHOR : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: authoredNote +BODYPARAMETER : authoredNote [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -597,12 +602,12 @@ For example, in the access reviews decisions API, this property might record the The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -CONTENT ``: itemBody +CONTENT : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -611,27 +616,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote) From 236cdacb6824347447c625ed398cdde66d1ab835 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:46:27 +0000 Subject: [PATCH 11/16] Escaped disallowed html tags --- .../Get-MgCompliance.md | 22 +++++++ .../Get-MgPrivacySubjectRightsRequest.md | 24 ++++++- ...t-MgPrivacySubjectRightsRequestApprover.md | 24 ++++++- ...ightsRequestApproverByUserPrincipalName.md | 24 ++++++- ...rivacySubjectRightsRequestApproverCount.md | 24 ++++++- ...jectRightsRequestApproverMailboxSetting.md | 24 ++++++- ...RequestApproverServiceProvisioningError.md | 22 +++++++ ...stApproverServiceProvisioningErrorCount.md | 24 ++++++- ...PrivacySubjectRightsRequestCollaborator.md | 24 ++++++- ...sRequestCollaboratorByUserPrincipalName.md | 24 ++++++- ...cySubjectRightsRequestCollaboratorCount.md | 24 ++++++- ...RightsRequestCollaboratorMailboxSetting.md | 24 ++++++- ...estCollaboratorServiceProvisioningError.md | 22 +++++++ ...llaboratorServiceProvisioningErrorCount.md | 24 ++++++- .../Get-MgPrivacySubjectRightsRequestCount.md | 22 +++++++ ...vacySubjectRightsRequestFinalAttachment.md | 24 ++++++- ...gPrivacySubjectRightsRequestFinalReport.md | 24 ++++++- .../Get-MgPrivacySubjectRightsRequestNote.md | 24 ++++++- ...-MgPrivacySubjectRightsRequestNoteCount.md | 24 ++++++- .../Get-MgPrivacySubjectRightsRequestTeam.md | 24 ++++++- .../Microsoft.Graph.Compliance.md | 19 ++++++ .../New-MgPrivacySubjectRightsRequest.md | 60 ++++++++++++------ .../New-MgPrivacySubjectRightsRequestNote.md | 30 +++++++-- .../Remove-MgPrivacySubjectRightsRequest.md | 24 ++++++- ...emove-MgPrivacySubjectRightsRequestNote.md | 24 ++++++- .../Update-MgCompliance.md | 22 +++++++ .../Update-MgPrivacySubjectRightsRequest.md | 62 +++++++++++++------ ...jectRightsRequestApproverMailboxSetting.md | 32 ++++++++-- ...RightsRequestCollaboratorMailboxSetting.md | 32 ++++++++-- ...pdate-MgPrivacySubjectRightsRequestNote.md | 30 +++++++-- 30 files changed, 732 insertions(+), 75 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md index c204390389239..a4f8a4d141c91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md @@ -284,3 +284,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index 5f8b06104a0fc..48f89c9a4e050 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -523,7 +523,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md index 447def9c02aef..16cb5e711e23f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md index a5459c4f9056b..ec147e2938cf4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md @@ -367,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -377,3 +377,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md index 56f401e990f83..8966069d79882 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -350,3 +350,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index bc638abf03fac..f51ad9f45b505 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -369,7 +369,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -379,3 +379,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md index e3bcb3ff6da22..c1d1bb4f504ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md @@ -503,3 +503,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md index a362a1c21ed89..68c1e45dd29e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md index 7252a348b91d4..2a0a8f8c5a428 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md index 3bb8d6c37335c..8ce8afa6133fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -375,3 +375,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md index 5b7e2a7ecbe21..4b8017f1bb255 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -352,3 +352,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index ed4e858d28cfc..dfac25ceb5276 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -369,7 +369,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -379,3 +379,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md index 1f221d8a53be6..f5b2fcfa09d88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md @@ -503,3 +503,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md index e36fe017b04bd..d37d5af707def 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index cfc9937209c32..8d6a4bd1df774 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index 36f09cf7ea7d6..43093cddce34e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -351,3 +351,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md index e17eb81e5fb15..1b5f01faac3ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -351,3 +351,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md index 2670c607ac88f..82d461f3b675f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -563,3 +563,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index 7a30ec00069fc..a34ae21bdb807 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -350,3 +350,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md index 5e74d43984ea1..1ea219e5147ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -353,3 +353,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md index c6f25313edc8d..85859b88c0d7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Microsoft.Graph.Compliance.md @@ -77,3 +77,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgPrivacySubjectRightsRequestNote](Update-MgPrivacySubjectRightsRequestNote.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md index 843c2cdef5c19..c7c890bb0fc9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md @@ -1921,7 +1921,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6291,8 +6291,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6302,14 +6302,14 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -ASSIGNEDTO : identity +ASSIGNEDTO ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : subjectRightsRequest +BODYPARAMETER ``: subjectRightsRequest [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -7212,7 +7212,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11582,8 +11582,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -12568,7 +12568,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -16938,8 +16938,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -16949,7 +16949,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -16960,7 +16960,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -DATASUBJECT : dataSubject +DATASUBJECT ``: dataSubject [(Any) ]: This indicates any property can be added to this object. [Email ]: Email of the data subject. [FirstName ]: First name of the data subject. @@ -16984,7 +16984,7 @@ For example, in the access reviews decisions API, this property might record the [StageStatus ]: subjectRightsRequestStageStatus [Type ]: Type of history. -INSIGHT : subjectRightsRequestDetail +INSIGHT ``: subjectRightsRequestDetail [(Any) ]: This indicates any property can be added to this object. [ExcludedItemCount ]: Count of items that are excluded from the request. [InsightCounts ]: Count of items per insight. @@ -16996,7 +16996,7 @@ INSIGHT : subjectRightsRequestDetail [SignedOffItemCount ]: Count of items signed off by the administrator. [TotalItemSize ]: Total item size in bytes. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -17043,7 +17043,7 @@ STAGES : Information about the [Stage ]: subjectRightsRequestStage [Status ]: subjectRightsRequestStageStatus -TEAM : team +TEAM ``: team [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -17960,7 +17960,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -21412,8 +21412,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -22327,3 +22327,25 @@ This URL should be treated as an opaque blob, and not parsed. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md index d4e61e9bfa511..30cd1ac6c909c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md @@ -555,14 +555,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHOR : identity +AUTHOR ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : authoredNote +BODYPARAMETER ``: authoredNote [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -580,12 +580,12 @@ For example, in the access reviews decisions API, this property might record the The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -CONTENT : itemBody +CONTENT ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post-notes?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md index 6206d2a19ad51..721ead93faa77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md index b8761945a2ab4..85dc4600b2a22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.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 [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md index e04faa7c5a27a..782d147947db0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md @@ -339,3 +339,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md index 4c2ad65dffff3..7576ab5da46c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md @@ -2172,7 +2172,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6542,8 +6542,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6553,14 +6553,14 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -ASSIGNEDTO : identity +ASSIGNEDTO ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : subjectRightsRequest +BODYPARAMETER ``: subjectRightsRequest [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -7463,7 +7463,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11833,8 +11833,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -12819,7 +12819,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -17189,8 +17189,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -17200,7 +17200,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -17211,7 +17211,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -DATASUBJECT : dataSubject +DATASUBJECT ``: dataSubject [(Any) ]: This indicates any property can be added to this object. [Email ]: Email of the data subject. [FirstName ]: First name of the data subject. @@ -17235,13 +17235,13 @@ For example, in the access reviews decisions API, this property might record the [StageStatus ]: subjectRightsRequestStageStatus [Type ]: Type of history. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -INSIGHT : subjectRightsRequestDetail +INSIGHT ``: subjectRightsRequestDetail [(Any) ]: This indicates any property can be added to this object. [ExcludedItemCount ]: Count of items that are excluded from the request. [InsightCounts ]: Count of items per insight. @@ -17253,7 +17253,7 @@ INSIGHT : subjectRightsRequestDetail [SignedOffItemCount ]: Count of items signed off by the administrator. [TotalItemSize ]: Total item size in bytes. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -17300,7 +17300,7 @@ STAGES : Information about the [Stage ]: subjectRightsRequestStage [Status ]: subjectRightsRequestStageStatus -TEAM : team +TEAM ``: team [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -18217,7 +18217,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -21669,8 +21669,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -22584,3 +22584,25 @@ This URL should be treated as an opaque blob, and not parsed. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest) - [](https://learn.microsoft.com/graph/api/subjectrightsrequest-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index 17b2bbd91500a..684608364e805 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -715,7 +715,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTOMATICREPLIESSETTING : automaticRepliesSetting +AUTOMATICREPLIESSETTING ``: automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -728,7 +728,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER : mailboxSettings +BODYPARAMETER ``: mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -764,20 +764,20 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE : localeInfo +LANGUAGE ``: localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS : workingHours +WORKINGHOURS ``: workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -791,3 +791,25 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index cdf5dd7e4524c..c84114d8f31db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -715,7 +715,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTOMATICREPLIESSETTING : automaticRepliesSetting +AUTOMATICREPLIESSETTING ``: automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -728,7 +728,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER : mailboxSettings +BODYPARAMETER ``: mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -764,20 +764,20 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE : localeInfo +LANGUAGE ``: localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS : workingHours +WORKINGHOURS ``: workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -791,3 +791,25 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md index 0686f14ea37a6..1c384310b14d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md @@ -577,14 +577,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHOR : identity +AUTHOR ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : authoredNote +BODYPARAMETER ``: authoredNote [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -602,12 +602,12 @@ For example, in the access reviews decisions API, this property might record the The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -CONTENT : itemBody +CONTENT ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuthoredNoteId ]: The unique identifier of authoredNote [SubjectRightsRequestId ]: The unique identifier of subjectRightsRequest [UserId ]: The unique identifier of user @@ -617,3 +617,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote) + + + + + + + + + + + + + + + + + + + + + + From 1d11d815a598ec26ca17efc079a87a8de10939dd Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:59:11 +0000 Subject: [PATCH 12/16] Inserted permissions Table --- .../Get-MgPrivacySubjectRightsRequest.md | 8 ++++++++ .../Get-MgPrivacySubjectRightsRequestCount.md | 8 ++++++++ .../Get-MgPrivacySubjectRightsRequestFinalAttachment.md | 8 ++++++++ .../Get-MgPrivacySubjectRightsRequestNoteCount.md | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index 48f89c9a4e050..a158041f50d82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -55,6 +55,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a subjectRightsRequest object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index 8d6a4bd1df774..b86fa10e0ab74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.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) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index 43093cddce34e..3a2076b4be1ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index a34ae21bdb807..46113f69b671f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.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) | SubjectRightsRequest.Read.All, SubjectRightsRequest.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 From 223c3288d46c3b80528efba1571e76df33c3af4e Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:59:24 +0000 Subject: [PATCH 13/16] Updated metadata parameters --- .../Microsoft.Graph.Compliance/Get-MgCompliance.md | 3 +++ .../Get-MgPrivacySubjectRightsRequest.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestApprover.md | 3 +++ ...MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestApproverCount.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md | 3 +++ ...vacySubjectRightsRequestApproverServiceProvisioningError.md | 3 +++ ...ubjectRightsRequestApproverServiceProvisioningErrorCount.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestCollaborator.md | 3 +++ ...ivacySubjectRightsRequestCollaboratorByUserPrincipalName.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestCollaboratorCount.md | 3 +++ ...-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md | 3 +++ ...SubjectRightsRequestCollaboratorServiceProvisioningError.md | 3 +++ ...ctRightsRequestCollaboratorServiceProvisioningErrorCount.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestCount.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestFinalAttachment.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestFinalReport.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestNote.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestNoteCount.md | 3 +++ .../Get-MgPrivacySubjectRightsRequestTeam.md | 3 +++ .../New-MgPrivacySubjectRightsRequest.md | 3 +++ .../New-MgPrivacySubjectRightsRequestNote.md | 3 +++ .../Remove-MgPrivacySubjectRightsRequest.md | 3 +++ .../Remove-MgPrivacySubjectRightsRequestNote.md | 3 +++ .../Microsoft.Graph.Compliance/Update-MgCompliance.md | 3 +++ .../Update-MgPrivacySubjectRightsRequest.md | 3 +++ ...date-MgPrivacySubjectRightsRequestApproverMailboxSetting.md | 3 +++ ...-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md | 3 +++ .../Update-MgPrivacySubjectRightsRequestNote.md | 3 +++ 29 files changed, 87 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md index a4f8a4d141c91..bb5b5ba79e0c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md @@ -15,6 +15,9 @@ title: Get-MgCompliance Get compliance +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCompliance](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaCompliance?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index a158041f50d82..850bf734a4273 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequest Read the properties and relationships of a subjectRightsRequest object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md index 16cb5e711e23f..2f727a14d352c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestApprover Collection of users who can approve the request. Currently only supported for requests of type delete. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApprover](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApprover?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md index ec147e2938cf4..47697af198211 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName Collection of users who can approve the request. Currently only supported for requests of type delete. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverByUserPrincipalName](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverByUserPrincipalName?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md index 8966069d79882..7bb69e63cd231 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestApproverCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index f51ad9f45b505..a88e0ccd429fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -17,6 +17,9 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md index c1d1bb4f504ad..326e52c265f85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md index 68c1e45dd29e1..c610230f84df9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md index 2a0a8f8c5a428..6ee0a3278fc99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestCollaborator Collection of users who can collaborate on the request. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaborator](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaborator?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md index 8ce8afa6133fd..c81e5f559523e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName Collection of users who can collaborate on the request. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorByUserPrincipalName](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorByUserPrincipalName?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md index 4b8017f1bb255..9e351c5449acf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index dfac25ceb5276..19722f85c7544 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -17,6 +17,9 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md index f5b2fcfa09d88..6f50b1c00533a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md index d37d5af707def..760060289ca34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCoun Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index b86fa10e0ab74..37174b1dacf06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index 3a2076b4be1ab..c8ffe904294f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestFinalAttachment Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestFinalAttachment](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestFinalAttachment?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md index 1b5f01faac3ce..099c2b3b11737 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md @@ -16,6 +16,9 @@ title: Get-MgPrivacySubjectRightsRequestFinalReport Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestFinalReport](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestFinalReport?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md index 82d461f3b675f..1c042ef5874a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestNote List of notes associated with the request. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index 46113f69b671f..605c12e1d8523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestNoteCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestNoteCount](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestNoteCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md index 1ea219e5147ad..9e6028a4f800b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md @@ -15,6 +15,9 @@ title: Get-MgPrivacySubjectRightsRequestTeam Information about the Microsoft Teams team that was created for the request. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPrivacySubjectRightsRequestTeam](/powershell/module/Microsoft.Graph.Beta.Compliance/Get-MgBetaPrivacySubjectRightsRequestTeam?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md index c7c890bb0fc9c..9161072e77525 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md @@ -15,6 +15,9 @@ title: New-MgPrivacySubjectRightsRequest Create a new subjectRightsRequest object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/New-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md index 30cd1ac6c909c..42732edfb42b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md @@ -15,6 +15,9 @@ title: New-MgPrivacySubjectRightsRequestNote Create a new authoredNote object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/New-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md index 721ead93faa77..4cc741097e6f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md @@ -15,6 +15,9 @@ title: Remove-MgPrivacySubjectRightsRequest Delete navigation property subjectRightsRequests for privacy +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Remove-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md index 85dc4600b2a22..1ced202792688 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md @@ -15,6 +15,9 @@ title: Remove-MgPrivacySubjectRightsRequestNote Delete navigation property notes for privacy +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Remove-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md index 782d147947db0..3a84cde71c955 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md @@ -15,6 +15,9 @@ title: Update-MgCompliance Update compliance +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCompliance](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaCompliance?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md index 7576ab5da46c6..49e4eeb7dcb82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md @@ -15,6 +15,9 @@ title: Update-MgPrivacySubjectRightsRequest Update the properties of a subjectRightsRequest object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequest](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index 684608364e805..ca01171bf3c85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -15,6 +15,9 @@ title: Update-MgPrivacySubjectRightsRequestApproverMailboxSetting Update property mailboxSettings value. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index c84114d8f31db..97ae580809237 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -15,6 +15,9 @@ title: Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting Update property mailboxSettings value. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md index 1c384310b14d3..09fc27651d739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md @@ -15,6 +15,9 @@ title: Update-MgPrivacySubjectRightsRequestNote Update the navigation property notes in privacy +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPrivacySubjectRightsRequestNote](/powershell/module/Microsoft.Graph.Beta.Compliance/Update-MgBetaPrivacySubjectRightsRequestNote?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From 19c0a870c71c879753cbcfa2f64294ff8b32b712 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:59:30 +0000 Subject: [PATCH 14/16] Repaired examples and descriptions --- .../Microsoft.Graph.Compliance/Get-MgCompliance.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequest.md | 7 ++++++- ...et-MgPrivacySubjectRightsRequestFinalAttachment.md | 7 ++++++- .../Get-MgPrivacySubjectRightsRequestFinalReport.md | 7 ++++++- .../Get-MgPrivacySubjectRightsRequestNote.md | 7 ++++++- .../New-MgPrivacySubjectRightsRequest.md | 7 ++++++- .../New-MgPrivacySubjectRightsRequestNote.md | 7 ++++++- .../Microsoft.Graph.Compliance/Update-MgCompliance.md | 11 +---------- .../Update-MgPrivacySubjectRightsRequest.md | 7 ++++++- 9 files changed, 44 insertions(+), 27 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md index bb5b5ba79e0c7..c1102c8180546 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get compliance -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -307,5 +297,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index 850bf734a4273..282141f37da40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -67,13 +67,18 @@ Read the properties and relationships of a subjectRightsRequest object. | Application | Not supported | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequest +``` +This example shows how to use the Get-MgPrivacySubjectRightsRequest Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index c8ffe904294f7..b53f629abb4be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md @@ -58,13 +58,18 @@ The attachment is a zip file that contains all the files that were included by t | Application | Not supported | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestFinalAttachment -SubjectRightsRequestId $subjectRightsRequestId +``` +This example shows how to use the Get-MgPrivacySubjectRightsRequestFinalAttachment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md index 099c2b3b11737..e3861b9c35a88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md @@ -50,13 +50,18 @@ Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestFinalReport -SubjectRightsRequestId $subjectRightsRequestId +``` +This example shows how to use the Get-MgPrivacySubjectRightsRequestFinalReport Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md index 1c042ef5874a5..49840ccc2464f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md @@ -61,13 +61,18 @@ This cmdlet has the following aliases, List of notes associated with the request. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance Get-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId $subjectRightsRequestId +``` +This example shows how to use the Get-MgPrivacySubjectRightsRequestNote Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md index 9161072e77525..c314b52585b38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md @@ -60,8 +60,9 @@ This cmdlet has the following aliases, Create a new subjectRightsRequest object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance @@ -98,6 +99,10 @@ approvers = @( New-MgPrivacySubjectRightsRequest -BodyParameter $params +``` +This example shows how to use the New-MgPrivacySubjectRightsRequest Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md index 42732edfb42b3..2ea6ca3dd6772 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md @@ -72,8 +72,9 @@ This cmdlet has the following aliases, Create a new authoredNote object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance @@ -86,6 +87,10 @@ $params = @{ New-MgPrivacySubjectRightsRequestNote -SubjectRightsRequestId $subjectRightsRequestId -BodyParameter $params +``` +This example shows how to use the New-MgPrivacySubjectRightsRequestNote Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md index 3a84cde71c955..9a74dc4f1e04f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Update compliance -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -362,5 +352,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md index 49e4eeb7dcb82..2e044ed99e0ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md @@ -92,8 +92,9 @@ This cmdlet has the following aliases, Update the properties of a subjectRightsRequest object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Compliance @@ -104,6 +105,10 @@ $params = @{ Update-MgPrivacySubjectRightsRequest -SubjectRightsRequestId $subjectRightsRequestId -BodyParameter $params +``` +This example shows how to use the Update-MgPrivacySubjectRightsRequest Cmdlet. + + ## PARAMETERS ### -AdditionalProperties From 37cc72a49711aedbb75af05d1c4446fa72e0e17b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:59:33 +0000 Subject: [PATCH 15/16] Remove boiler plate code injected by Autorest --- .../Get-MgPrivacySubjectRightsRequestApprover.md | 11 +---------- ...SubjectRightsRequestApproverByUserPrincipalName.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequestApproverCount.md | 11 +---------- ...ivacySubjectRightsRequestApproverMailboxSetting.md | 11 +---------- ...ctRightsRequestApproverServiceProvisioningError.md | 11 +---------- ...htsRequestApproverServiceProvisioningErrorCount.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequestCollaborator.md | 11 +---------- ...ectRightsRequestCollaboratorByUserPrincipalName.md | 11 +---------- ...-MgPrivacySubjectRightsRequestCollaboratorCount.md | 11 +---------- ...ySubjectRightsRequestCollaboratorMailboxSetting.md | 11 +---------- ...ghtsRequestCollaboratorServiceProvisioningError.md | 11 +---------- ...equestCollaboratorServiceProvisioningErrorCount.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequestCount.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequestNoteCount.md | 11 +---------- .../Get-MgPrivacySubjectRightsRequestTeam.md | 11 +---------- .../Remove-MgPrivacySubjectRightsRequest.md | 11 +---------- .../Remove-MgPrivacySubjectRightsRequestNote.md | 11 +---------- ...ivacySubjectRightsRequestApproverMailboxSetting.md | 11 +---------- ...ySubjectRightsRequestCollaboratorMailboxSetting.md | 11 +---------- .../Update-MgPrivacySubjectRightsRequestNote.md | 11 +---------- 20 files changed, 20 insertions(+), 200 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md index 2f727a14d352c..0e0c718bfac7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Collection of users who can approve the request. Currently only supported for requests of type delete. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md index 47697af198211..d7c68cd5dc7a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Collection of users who can approve the request. Currently only supported for requests of type delete. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -400,5 +390,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md index 7bb69e63cd231..5acc97f926f5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.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 @@ -373,5 +363,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index a88e0ccd429fa..59c57e6d5c1b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -53,16 +53,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -## 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.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md index 326e52c265f85..1e2192d65c783 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md @@ -43,16 +43,6 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -526,5 +516,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md index c610230f84df9..1dd36aac1e400 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.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.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md index 6ee0a3278fc99..f70ad368dcfdd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Collection of users who can collaborate on the request. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -587,5 +577,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md index c81e5f559523e..7bec492ea8291 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Collection of users who can collaborate on the request. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -398,5 +388,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md index 9e351c5449acf..b98ea3955aa59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.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 @@ -375,5 +365,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index 19722f85c7544..f777ab270231e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -53,16 +53,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -## 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.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md index 6f50b1c00533a..659b764efc9ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md @@ -43,16 +43,6 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -526,5 +516,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md index 760060289ca34..7dca00e9c4208 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.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.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index 37174b1dacf06..d8ac0ac97e1ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index 605c12e1d8523..5e3c8320669f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -381,5 +371,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md index 9e6028a4f800b..9539898fe90ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Information about the Microsoft Teams team that was created for the request. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -376,5 +366,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md index 4cc741097e6f4..7ee607511bbdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property subjectRightsRequests for privacy -## 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.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md index 1ced202792688..ab831ddbbff56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property notes for privacy -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AuthoredNoteId @@ -438,5 +428,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index ca01171bf3c85..c3a169fa9cdd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update property mailboxSettings value. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -814,5 +804,6 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index 97ae580809237..44397132d6c72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update property mailboxSettings value. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -814,5 +804,6 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md index 09fc27651d739..9d9ce995cd265 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property notes in privacy -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -640,5 +630,6 @@ INPUTOBJECT ``: Identity Parameter + From 94f203808b054aaed57fed6cc12939eaba80eb62 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:59:50 +0000 Subject: [PATCH 16/16] Corrected related link to conform to the new platyps rules --- .../Microsoft.Graph.Compliance/Get-MgCompliance.md | 2 +- .../Get-MgPrivacySubjectRightsRequest.md | 6 +++--- .../Get-MgPrivacySubjectRightsRequestApprover.md | 2 +- ...rivacySubjectRightsRequestApproverByUserPrincipalName.md | 2 +- .../Get-MgPrivacySubjectRightsRequestApproverCount.md | 2 +- ...t-MgPrivacySubjectRightsRequestApproverMailboxSetting.md | 2 +- ...ySubjectRightsRequestApproverServiceProvisioningError.md | 2 +- ...ectRightsRequestApproverServiceProvisioningErrorCount.md | 2 +- .../Get-MgPrivacySubjectRightsRequestCollaborator.md | 2 +- ...cySubjectRightsRequestCollaboratorByUserPrincipalName.md | 2 +- .../Get-MgPrivacySubjectRightsRequestCollaboratorCount.md | 2 +- ...PrivacySubjectRightsRequestCollaboratorMailboxSetting.md | 2 +- ...jectRightsRequestCollaboratorServiceProvisioningError.md | 2 +- ...ightsRequestCollaboratorServiceProvisioningErrorCount.md | 2 +- .../Get-MgPrivacySubjectRightsRequestCount.md | 2 +- .../Get-MgPrivacySubjectRightsRequestFinalAttachment.md | 4 ++-- .../Get-MgPrivacySubjectRightsRequestFinalReport.md | 4 ++-- .../Get-MgPrivacySubjectRightsRequestNote.md | 4 ++-- .../Get-MgPrivacySubjectRightsRequestNoteCount.md | 2 +- .../Get-MgPrivacySubjectRightsRequestTeam.md | 2 +- .../New-MgPrivacySubjectRightsRequest.md | 4 ++-- .../New-MgPrivacySubjectRightsRequestNote.md | 4 ++-- .../Remove-MgPrivacySubjectRightsRequest.md | 2 +- .../Remove-MgPrivacySubjectRightsRequestNote.md | 2 +- .../Microsoft.Graph.Compliance/Update-MgCompliance.md | 2 +- .../Update-MgPrivacySubjectRightsRequest.md | 4 ++-- ...e-MgPrivacySubjectRightsRequestApproverMailboxSetting.md | 2 +- ...PrivacySubjectRightsRequestCollaboratorMailboxSetting.md | 2 +- .../Update-MgPrivacySubjectRightsRequestNote.md | 2 +- 29 files changed, 37 insertions(+), 37 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md index c1102c8180546..34be6d7255c9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgCompliance.md @@ -276,7 +276,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance) +- [Get-MgCompliance](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgcompliance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md index 282141f37da40..73c10bedf1c18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequest.md @@ -548,9 +548,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0) +- [Get-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md index 0e0c718bfac7c..df3257ad9c221 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApprover.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover) +- [Get-MgPrivacySubjectRightsRequestApprover](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprover) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md index d7c68cd5dc7a5..80c0192773eb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName.md @@ -369,7 +369,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname) +- [Get-MgPrivacySubjectRightsRequestApproverByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md index 5acc97f926f5f..f145800d0df5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverCount.md @@ -342,7 +342,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount) +- [Get-MgPrivacySubjectRightsRequestApproverCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index 59c57e6d5c1b5..71a8bbb0c2d8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -371,7 +371,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting) +- [Get-MgPrivacySubjectRightsRequestApproverMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapprovermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md index 1e2192d65c783..33a4b80600997 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError.md @@ -495,7 +495,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror) +- [Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md index 1dd36aac1e400..601c3ba66ec08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount) +- [Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestapproverserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md index f70ad368dcfdd..068a716e961b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaborator.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator) +- [Get-MgPrivacySubjectRightsRequestCollaborator](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaborator) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md index 7bec492ea8291..71f291cac3411 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName.md @@ -367,7 +367,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname) +- [Get-MgPrivacySubjectRightsRequestCollaboratorByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md index b98ea3955aa59..79899c1b849c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorCount.md @@ -344,7 +344,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount) +- [Get-MgPrivacySubjectRightsRequestCollaboratorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index f777ab270231e..9db273f093304 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -371,7 +371,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting) +- [Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratormailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md index 659b764efc9ad..9eca561ac1880 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError.md @@ -495,7 +495,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror) +- [Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md index 7dca00e9c4208..9008fe16b66e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount) +- [Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcollaboratorserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md index d8ac0ac97e1ef..c4125d703faba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount) +- [Get-MgPrivacySubjectRightsRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md index b53f629abb4be..f2bf6a1f88ec7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalAttachment.md @@ -365,8 +365,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0) +- [Get-MgPrivacySubjectRightsRequestFinalAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalattachment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md index e3861b9c35a88..f1978301130a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestFinalReport.md @@ -357,8 +357,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0) +- [Get-MgPrivacySubjectRightsRequestFinalReport](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestfinalreport) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md index 49840ccc2464f..6389eb797521f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNote.md @@ -569,8 +569,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0) +- [Get-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnote) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md index 5e3c8320669f9..54b099b56a13d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestNoteCount.md @@ -350,7 +350,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount) +- [Get-MgPrivacySubjectRightsRequestNoteCount](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestnotecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md index 9539898fe90ff..77ed1c45aa074 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Get-MgPrivacySubjectRightsRequestTeam.md @@ -345,7 +345,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam) +- [Get-MgPrivacySubjectRightsRequestTeam](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/get-mgprivacysubjectrightsrequestteam) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md index c314b52585b38..6f3db86ca10be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequest.md @@ -22333,8 +22333,8 @@ This URL should be treated as an opaque blob, and not parsed. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0) +- [New-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-post?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md index 2ea6ca3dd6772..a093ef59b89f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/New-MgPrivacySubjectRightsRequestNote.md @@ -602,8 +602,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-post-notes?view=graph-rest-1.0) +- [New-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/new-mgprivacysubjectrightsrequestnote) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-post-notes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md index 7ee607511bbdc..68b3bf9acd930 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequest.md @@ -386,7 +386,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest) +- [Remove-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md index ab831ddbbff56..317285d32c68a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Remove-MgPrivacySubjectRightsRequestNote.md @@ -407,7 +407,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote) +- [Remove-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/remove-mgprivacysubjectrightsrequestnote) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md index 9a74dc4f1e04f..c1fe7a1923edc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgCompliance.md @@ -331,7 +331,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance) +- [Update-MgCompliance](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgcompliance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md index 2e044ed99e0ae..6ea9d1aea3a1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequest.md @@ -22590,8 +22590,8 @@ This URL should be treated as an opaque blob, and not parsed. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest) -- [](https://learn.microsoft.com/graph/api/subjectrightsrequest-update?view=graph-rest-1.0) +- [Update-MgPrivacySubjectRightsRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/subjectrightsrequest-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md index c3a169fa9cdd7..95ce986d13986 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestApproverMailboxSetting.md @@ -783,7 +783,7 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting) +- [Update-MgPrivacySubjectRightsRequestApproverMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestapprovermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md index 44397132d6c72..fbe0043b81fee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting.md @@ -783,7 +783,7 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting) +- [Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestcollaboratormailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md index 9d9ce995cd265..69f05987c7827 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Compliance/Update-MgPrivacySubjectRightsRequestNote.md @@ -609,7 +609,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote) +- [Update-MgPrivacySubjectRightsRequestNote](https://learn.microsoft.com/powershell/module/microsoft.graph.compliance/update-mgprivacysubjectrightsrequestnote)