From 0cd58c235cd1e7ae278e1e7e4b30322855bc9906 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:38:22 -0700 Subject: [PATCH 01/17] revert 790 --- scripts/GenerateMarkDown.ps1 | 177 +++++++---------------------------- 1 file changed, 33 insertions(+), 144 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..d7fd5d244a5ea 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -13,36 +13,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -86,11 +56,10 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ $profilePath = "graph-powershell-1.0" @@ -98,34 +67,10 @@ function Start-GraphHelp { $profilePath = "graph-powershell-beta" } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } - } - } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . @@ -144,11 +89,7 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -163,104 +104,52 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - + + Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } $CmdletCount = 0 - $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $MetadataCommands[$Command] = $true $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } + if (-not(Test-Path $CmdletDocsPath)) { + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } - } elseif (-not (Test-Path $CmdletDocsPath)) { - Write-Warning "Cmdlet $Command is not available." + } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - - if ($CmdletCount -eq 0) { + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue - } } - - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force From e6db7aca807cfefd0501cd38834b6fa3f6728b39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:43:12 -0700 Subject: [PATCH 02/17] remove stabilize msdate from pipeline --- azure-pipelines/powershell-docs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..603004858ab45 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -158,14 +158,6 @@ extends: targetType: 'filePath' pwsh: true filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - task: AzureKeyVault@2 displayName: "Azure Key Vault: Get GitHub App secrets" inputs: From 73a8c601468325d6a6906f1c357449e9cc7d5eba Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:01:17 -0700 Subject: [PATCH 03/17] Prevent mass doc deletion when Graph modules fail to load Guard GenerateMarkDown.ps1 so a module's docs are only deleted when the module is available to regenerate them. Skip-and-preserve per workload module, and abort if Authentication is unavailable, avoiding refresh PRs that delete thousands of docs after a failed module install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index d7fd5d244a5ea..8c4b03f16ddf8 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -56,9 +56,15 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - - Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ @@ -101,6 +107,16 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions: if the module failed to install/import, + # skip it entirely so its committed docs are preserved instead of being deleted + # and never regenerated (which is what produced the mass-deletion refresh PRs). + if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { + Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + return + } + Import-Module $Path -Force -Global -ErrorAction SilentlyContinue + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } From 07657def287d803ad342c41d6f0061804d49781b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:09:19 -0700 Subject: [PATCH 04/17] Normalize generated-commit author to Graph DevX Tooling bot EscapeDisallowedHtmlTags.ps1 and RemoveInvalidFullStops.ps1 hardcoded a personal git identity, so their stage commits in the weekly refresh PRs were attributed to an individual instead of the tooling bot. Align both with the other generation scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/EscapeDisallowedHtmlTags.ps1 | 4 ++-- scripts/RemoveInvalidFullStops.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..597d7a5633f81 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -23,8 +23,8 @@ function EscapeDisallowedHtmlTags { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Escaped disallowed html tags" } diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..db34789d58025 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -23,8 +23,8 @@ function Remove-InvalidFullStops { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Removed invalid full stops from the beginning of lines" } From 29c4a42a5ee11cabad11dfec978623090f64c623 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 11:36:40 -0700 Subject: [PATCH 05/17] Fix duplicated doc enrichment blocks and BOM churn in generation - UpdateLinks.ps1: only insert the beta/v1 '[!NOTE]' link when it is not already present, so weekly runs stop stacking duplicate note blocks. - GeneratePermissionsTable.ps1: skip files that already contain a '**Permissions**' table instead of prepending another copy each run. - GenerateMarkDown.ps1: write PlatyPS output as UTF-8 without BOM so every regenerated file no longer diffs on a leading BOM. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 4 ++-- scripts/GeneratePermissionsTable.ps1 | 7 ++++++- scripts/UpdateLinks.ps1 | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 8c4b03f16ddf8..3aaae05dc9f8d 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -27,7 +27,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -35,7 +35,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..47e90ae3698f8 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -136,7 +136,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..fcc8d8e2253b2 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -175,7 +175,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File From a94085a9f3a84c441f3ed86dc5714407d8654618 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 12:15:46 -0700 Subject: [PATCH 06/17] Force LF line endings for generated markdown docs Add '*.md text eol=lf' to .gitattributes so PlatyPS/transform scripts, which run on Windows and emit CRLF, no longer produce line-ending churn in the weekly refresh PRs. Index blobs are already LF, so this only pins the working-tree checkout and future writes to LF. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file From 19a3a1a450a7ffe97d24ef506837f842c15293e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 29 Jul 2026 11:57:43 -0700 Subject: [PATCH 07/17] Prevent mass doc deletion by overwriting in place and removing only orphans Bulk-deleting a module's docs before regenerating meant any transient import failure (installed but unimportable module, e.g. Authentication version conflict) wiped docs that were never regenerated, producing refresh PRs with thousands of missing files. Now: verify the module truly imports and exposes commands before processing (skip-and-preserve otherwise), overwrite each doc in place, and remove only genuine orphans whose command is no longer in the metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 56 +++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 3aaae05dc9f8d..0d5a062bef429 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -63,7 +63,7 @@ function Start-GraphHelp { if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." } - Import-Module Microsoft.Graph.Authentication -Force -Global + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { @@ -108,21 +108,37 @@ function Get-FolderByProfile { $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath - # Guard against catastrophic deletions: if the module failed to install/import, - # skip it entirely so its committed docs are preserved instead of being deleted + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped # and never regenerated (which is what produced the mass-deletion refresh PRs). - if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { - Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } - Import-Module $Path -Force -Global -ErrorAction SilentlyContinue if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - - Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } + + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 + $MetadataCommands = @{} # Generate table of contents for each module $TocFileName = "$Path.md" $ModuleGuid = [guid]::NewGuid().ToString() @@ -147,19 +163,27 @@ function Get-FolderByProfile { Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - if (-not(Test-Path $CmdletDocsPath)) { - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path - } else { - Write-Warning "Cmdlet $Command is not available." - } - + $MetadataCommands[$Command] = $true + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } + + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force + } + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse } From 00db04466cdc97b8fcbf4298c23497504bb7fd81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 30 Jul 2026 17:20:46 -0700 Subject: [PATCH 08/17] Refactor weekly docs pipeline into isolated per-module stages Each Graph workload module now generates in its own Azure DevOps stage per SDK profile (~86 independent stages), giving every module a fresh agent and a clean assembly-load context. This structurally eliminates the "assembly with same name is already loaded" collisions that produced mass-deletion / no-op refresh PRs. - GenerateMarkDown.ps1: add -GraphProfileFilter and -ModuleFilter scoping; in scoped runs do a complete delete + full regen of the single module, throw before any deletion on import failure (fail-safe), and emit a ModuleGenerated signal only on success. - 9 post-processing scripts: add matching profile/module scoping and empty-commit guards so each touches only the target module folder. - update-template.yml: parameterized install (InstallProfile/Module) that installs only Authentication + the single workload submodule for isolated runs; install failures warn instead of failing. - New common-templates/generate-module-docs-steps.yml: full single-module sequence (install -> generate -> post-process -> push -> PR). Generate step is continueOnError and every later step is gated on ModuleGenerated, so a failing module deletes nothing, opens no PR, and never fails the overall pipeline. - New common-templates/module-stages.yml: emits one dependsOn:[] stage per module. - powershell-docs.yml: invoke module-stages.yml for v1.0 (incl. Authentication) and beta; each stage opens its own pull request. ms.date changes every run (StabilizeMsDate is intentionally not run) for reviewable PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .../generate-module-docs-steps.yml | 219 ++++++++++++++++ .../common-templates/module-stages.yml | 50 ++++ azure-pipelines/powershell-docs.yml | 248 ++++++++---------- azure-pipelines/update-template.yml | 60 ++++- scripts/CorrectRelatedLinks-AllFiles.ps1 | 10 +- scripts/EscapeDisallowedHtmlTags.ps1 | 16 +- scripts/GenerateAliasedDocs.ps1 | 11 +- scripts/GenerateMarkDown.ps1 | 93 +++++-- scripts/GeneratePermissionsTable.ps1 | 15 +- scripts/MsSubserviceUpdate.ps1 | 7 +- scripts/RemoveBoilerPlateCode.ps1 | 34 ++- scripts/RemoveInvalidFullStops.ps1 | 16 +- .../RepairExamplesDescriptionsAndTitle.ps1 | 14 +- scripts/UpdateLinks.ps1 | 9 +- 14 files changed, 600 insertions(+), 202 deletions(-) create mode 100644 azure-pipelines/common-templates/generate-module-docs-steps.yml create mode 100644 azure-pipelines/common-templates/module-stages.yml diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index 603004858ab45..b6dc5b22f8b9b 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,148 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 597d7a5633f81..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 0d5a062bef429..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -51,36 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - # Guard against catastrophic deletions: never remove existing docs unless the module - # is available to regenerate them. Authentication is required for every run, so abort - # if it failed to install rather than wiping committed documentation. - if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { - throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) } - Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop - Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - $GraphMapping = Get-GraphMapping - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" - Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" + } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + } } + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -95,6 +123,14 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json + + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } $ModulesToGenerate | ForEach-Object { $ModuleName = $_ @@ -125,6 +161,12 @@ function Get-FolderByProfile { } } if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } @@ -132,6 +174,13 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in # place as it is regenerated, and only genuine orphans (commands no longer in the @@ -209,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index 47e90ae3698f8..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index db34789d58025..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index fcc8d8e2253b2..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -205,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file From 5202fe4d4c7f28cceeacc3451143fda9366e18b0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 11:11:08 -0700 Subject: [PATCH 09/17] Fix template path resolution in powershell-docs.yml Azure DevOps resolves template references relative to the directory of the referencing file. powershell-docs.yml lives in azure-pipelines/, so the "azure-pipelines/common-templates/module-stages.yml@self" path resolved to azure-pipelines/azure-pipelines/common-templates/module-stages.yml and failed with "Not Found". Use a path relative to the file's own directory instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- azure-pipelines/powershell-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index b6dc5b22f8b9b..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,7 +47,7 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "v1.0" ProfileLabel: "v1" @@ -99,7 +99,7 @@ extends: - Users.Actions - Users.Functions - WindowsUpdates - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "beta" ProfileLabel: "beta" From 5585934fe0ebf2c423cb67ee32beb9d20be15a4d Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:34 +0000 Subject: [PATCH 10/17] Updated markdown help --- ...Add-MgCommunicationCallLargeGalleryView.md | 59 ++------ .../Clear-MgCommunicationPresence.md | 54 +++---- ...gCommunicationPresenceAutomaticLocation.md | 46 ++---- .../Clear-MgCommunicationPresenceLocation.md | 46 ++---- ...municationPresenceUserPreferredPresence.md | 46 ++---- .../Clear-MgUserPresence.md | 58 +------ .../Clear-MgUserPresenceAutomaticLocation.md | 45 ++---- .../Clear-MgUserPresenceLocation.md | 45 ++---- ...ear-MgUserPresenceUserPreferredPresence.md | 50 +----- .../Get-MgCommunicationAdhocCall.md | 48 ++---- .../Get-MgCommunicationAdhocCallCount.md | 42 ++---- .../Get-MgCommunicationAdhocCallRecording.md | 50 +++--- ...gCommunicationAdhocCallRecordingContent.md | 46 ++---- ...-MgCommunicationAdhocCallRecordingCount.md | 46 ++---- ...-MgCommunicationAdhocCallRecordingDelta.md | 46 ++---- .../Get-MgCommunicationAdhocCallTranscript.md | 50 +++--- ...CommunicationAdhocCallTranscriptContent.md | 46 ++---- ...MgCommunicationAdhocCallTranscriptCount.md | 46 ++---- ...MgCommunicationAdhocCallTranscriptDelta.md | 46 ++---- ...ationAdhocCallTranscriptMetadataContent.md | 46 ++---- .../Get-MgCommunicationCall.md | 59 +------- ...et-MgCommunicationCallAudioRoutingGroup.md | 56 ++----- ...CommunicationCallAudioRoutingGroupCount.md | 50 ++---- ...gCommunicationCallContentSharingSession.md | 56 ++----- ...unicationCallContentSharingSessionCount.md | 50 ++---- .../Get-MgCommunicationCallCount.md | 42 ++---- .../Get-MgCommunicationCallOperation.md | 46 +----- .../Get-MgCommunicationCallOperationCount.md | 46 ++---- .../Get-MgCommunicationCallParticipant.md | 56 ++----- ...Get-MgCommunicationCallParticipantCount.md | 50 ++---- .../Get-MgCommunicationCallRecord.md | 57 ++----- .../Get-MgCommunicationCallRecordCount.md | 42 ++---- ...et-MgCommunicationCallRecordOrganizerV2.md | 46 ++---- ...et-MgCommunicationCallRecordParticipant.md | 46 ++---- ...-MgCommunicationCallRecordParticipantV2.md | 46 +----- .../Get-MgCommunicationCallRecordSession.md | 55 ++----- ...t-MgCommunicationCallRecordSessionCount.md | 46 ++---- ...municationCallRecordSessionSegmentCount.md | 46 ++---- .../Get-MgCommunicationOnlineMeeting.md | 67 +++------ ...municationOnlineMeetingAttendanceReport.md | 48 ++---- ...MeetingAttendanceReportAttendanceRecord.md | 49 ++---- ...ngAttendanceReportAttendanceRecordCount.md | 46 ++---- ...ationOnlineMeetingAttendanceReportCount.md | 46 ++---- ...ommunicationOnlineMeetingAttendeeReport.md | 46 ++---- ...gCommunicationOnlineMeetingConversation.md | 48 ++---- ...unicationOnlineMeetingConversationCount.md | 42 ++---- ...icationOnlineMeetingConversationMessage.md | 47 ++---- ...eMeetingConversationMessageConversation.md | 46 ++---- ...onOnlineMeetingConversationMessageCount.md | 46 ++---- ...nlineMeetingConversationMessageReaction.md | 48 ++---- ...MeetingConversationMessageReactionCount.md | 46 ++---- ...onOnlineMeetingConversationMessageReply.md | 48 ++---- ...ingConversationMessageReplyConversation.md | 46 ++---- ...ineMeetingConversationMessageReplyCount.md | 46 ++---- ...MeetingConversationMessageReplyReaction.md | 48 ++---- ...ngConversationMessageReplyReactionCount.md | 46 ++---- ...OnlineMeetingConversationMessageReplyTo.md | 50 +++--- ...nOnlineMeetingConversationOnlineMeeting.md | 46 ++---- ...ConversationOnlineMeetingAttendeeReport.md | 46 ++---- ...icationOnlineMeetingConversationStarter.md | 46 ++---- ...eMeetingConversationStarterConversation.md | 46 ++---- ...nlineMeetingConversationStarterReaction.md | 48 ++---- ...MeetingConversationStarterReactionCount.md | 46 ++---- ...onOnlineMeetingConversationStarterReply.md | 48 ++---- ...ingConversationStarterReplyConversation.md | 46 ++---- ...ineMeetingConversationStarterReplyCount.md | 46 ++---- ...MeetingConversationStarterReplyReaction.md | 47 ++---- ...ngConversationStarterReplyReactionCount.md | 46 ++---- ...OnlineMeetingConversationStarterReplyTo.md | 50 +++--- .../Get-MgCommunicationOnlineMeetingCount.md | 46 ++---- ...Get-MgCommunicationOnlineMeetingMessage.md | 46 ++---- ...t-MgCommunicationOnlineMeetingRecording.md | 52 +++---- ...municationOnlineMeetingRecordingContent.md | 46 ++---- ...ommunicationOnlineMeetingRecordingCount.md | 46 ++---- ...ommunicationOnlineMeetingRecordingDelta.md | 45 ++---- ...-MgCommunicationOnlineMeetingTranscript.md | 52 +++---- ...unicationOnlineMeetingTranscriptContent.md | 46 ++---- ...mmunicationOnlineMeetingTranscriptCount.md | 46 ++---- ...mmunicationOnlineMeetingTranscriptDelta.md | 45 ++---- ...nOnlineMeetingTranscriptMetadataContent.md | 46 ++---- ...lineMeetingVirtualAppointmentJoinWebUrl.md | 48 ++---- .../Get-MgCommunicationPresence.md | 46 +----- .../Get-MgCommunicationPresenceByUserId.md | 54 +------ .../Get-MgCommunicationPresenceCount.md | 46 ++---- .../Get-MgUserOnlineMeeting.md | 91 +++-------- ...Get-MgUserOnlineMeetingAttendanceReport.md | 51 +------ ...MeetingAttendanceReportAttendanceRecord.md | 44 +----- ...ngAttendanceReportAttendanceRecordCount.md | 50 ++---- ...gUserOnlineMeetingAttendanceReportCount.md | 50 ++---- .../Get-MgUserOnlineMeetingAttendeeReport.md | 50 +----- .../Get-MgUserOnlineMeetingCount.md | 50 ++---- .../Get-MgUserOnlineMeetingRecording.md | 59 ++------ ...Get-MgUserOnlineMeetingRecordingContent.md | 50 ++---- .../Get-MgUserOnlineMeetingRecordingCount.md | 50 ++---- .../Get-MgUserOnlineMeetingRecordingDelta.md | 49 ++---- .../Get-MgUserOnlineMeetingTranscript.md | 61 ++------ ...et-MgUserOnlineMeetingTranscriptContent.md | 61 ++------ .../Get-MgUserOnlineMeetingTranscriptCount.md | 50 ++---- .../Get-MgUserOnlineMeetingTranscriptDelta.md | 49 ++---- ...rOnlineMeetingTranscriptMetadataContent.md | 52 +------ ...lineMeetingVirtualAppointmentJoinWebUrl.md | 52 +------ .../Get-MgUserPresence.md | 59 +------- .../Invoke-MgAnswerCommunicationCall.md | 76 ++-------- ...MgCreateOrGetCommunicationOnlineMeeting.md | 60 +++----- ...ke-MgInviteCommunicationCallParticipant.md | 80 ++-------- .../Invoke-MgKeepCommunicationCallAlive.md | 50 +----- ...nicationCallTeleconferenceDeviceQuality.md | 47 ++---- .../Invoke-MgMuteCommunicationCall.md | 59 ++------ ...voke-MgMuteCommunicationCallParticipant.md | 60 ++------ .../Invoke-MgPlayCommunicationCallPrompt.md | 61 ++------ ...nvoke-MgRecordCommunicationCallResponse.md | 69 +++------ .../Invoke-MgRedirectCommunicationCall.md | 54 ++----- .../Invoke-MgRejectCommunicationCall.md | 57 ++----- ...voke-MgSubscribeCommunicationCallToTone.md | 51 ++----- .../Invoke-MgUnmuteCommunicationCall.md | 59 ++------ .../Microsoft.Graph.CloudCommunications.md | 21 +-- .../Move-MgCommunicationCall.md | 80 ++-------- .../New-MgCommunicationAdhocCall.md | 44 ++---- .../New-MgCommunicationAdhocCallRecording.md | 53 +++---- .../New-MgCommunicationAdhocCallTranscript.md | 53 +++---- .../New-MgCommunicationCall.md | 142 ++++-------------- ...ew-MgCommunicationCallAudioRoutingGroup.md | 58 ++----- ...gCommunicationCallContentSharingSession.md | 47 ++---- .../New-MgCommunicationCallOperation.md | 52 +++---- .../New-MgCommunicationCallParticipant.md | 59 +++----- ...-MgCommunicationCallRecordParticipantV2.md | 48 ++---- .../New-MgCommunicationCallRecordSession.md | 56 +++---- .../New-MgCommunicationOnlineMeeting.md | 64 +++----- ...municationOnlineMeetingAttendanceReport.md | 52 +++---- ...MeetingAttendanceReportAttendanceRecord.md | 52 ++----- ...gCommunicationOnlineMeetingConversation.md | 51 +++---- ...icationOnlineMeetingConversationMessage.md | 60 +++----- ...nlineMeetingConversationMessageReaction.md | 50 ++---- ...onOnlineMeetingConversationMessageReply.md | 60 +++----- ...MeetingConversationMessageReplyReaction.md | 50 ++---- ...nlineMeetingConversationStarterReaction.md | 50 ++---- ...onOnlineMeetingConversationStarterReply.md | 60 +++----- ...MeetingConversationStarterReplyReaction.md | 50 ++---- ...w-MgCommunicationOnlineMeetingRecording.md | 54 +++---- ...-MgCommunicationOnlineMeetingTranscript.md | 52 +++---- .../New-MgCommunicationPresence.md | 50 ++---- .../New-MgUserOnlineMeeting.md | 87 +++-------- ...New-MgUserOnlineMeetingAttendanceReport.md | 52 +++---- ...MeetingAttendanceReportAttendanceRecord.md | 53 +++---- .../New-MgUserOnlineMeetingRecording.md | 54 +++---- .../New-MgUserOnlineMeetingTranscript.md | 52 +++---- .../Remove-MgCommunicationAdhocCall.md | 44 ++---- ...emove-MgCommunicationAdhocCallRecording.md | 44 ++---- ...gCommunicationAdhocCallRecordingContent.md | 44 ++---- ...move-MgCommunicationAdhocCallTranscript.md | 44 ++---- ...CommunicationAdhocCallTranscriptContent.md | 44 ++---- ...ationAdhocCallTranscriptMetadataContent.md | 44 ++---- .../Remove-MgCommunicationCall.md | 50 +----- ...ve-MgCommunicationCallAudioRoutingGroup.md | 50 +----- ...gCommunicationCallContentSharingSession.md | 44 ++---- .../Remove-MgCommunicationCallOperation.md | 44 ++---- .../Remove-MgCommunicationCallParticipant.md | 57 +------ ...ve-MgCommunicationCallRecordOrganizerV2.md | 44 ++---- ...-MgCommunicationCallRecordParticipantV2.md | 44 ++---- ...Remove-MgCommunicationCallRecordSession.md | 44 ++---- .../Remove-MgCommunicationOnlineMeeting.md | 44 ++---- ...municationOnlineMeetingAttendanceReport.md | 44 ++---- ...MeetingAttendanceReportAttendanceRecord.md | 44 ++---- ...ommunicationOnlineMeetingAttendeeReport.md | 44 ++---- ...gCommunicationOnlineMeetingConversation.md | 44 ++---- ...icationOnlineMeetingConversationMessage.md | 44 ++---- ...nlineMeetingConversationMessageReaction.md | 44 ++---- ...onOnlineMeetingConversationMessageReply.md | 44 ++---- ...MeetingConversationMessageReplyReaction.md | 44 ++---- ...ConversationOnlineMeetingAttendeeReport.md | 44 ++---- ...icationOnlineMeetingConversationStarter.md | 44 ++---- ...nlineMeetingConversationStarterReaction.md | 44 ++---- ...onOnlineMeetingConversationStarterReply.md | 44 ++---- ...MeetingConversationStarterReplyReaction.md | 44 ++---- ...e-MgCommunicationOnlineMeetingRecording.md | 44 ++---- ...municationOnlineMeetingRecordingContent.md | 44 ++---- ...-MgCommunicationOnlineMeetingTranscript.md | 44 ++---- ...unicationOnlineMeetingTranscriptContent.md | 44 ++---- ...nOnlineMeetingTranscriptMetadataContent.md | 44 ++---- .../Remove-MgCommunicationPresence.md | 44 ++---- .../Remove-MgUserOnlineMeeting.md | 48 +----- ...ove-MgUserOnlineMeetingAttendanceReport.md | 44 ++---- ...MeetingAttendanceReportAttendanceRecord.md | 44 ++---- ...emove-MgUserOnlineMeetingAttendeeReport.md | 44 ++---- .../Remove-MgUserOnlineMeetingRecording.md | 44 ++---- ...ove-MgUserOnlineMeetingRecordingContent.md | 44 ++---- .../Remove-MgUserOnlineMeetingTranscript.md | 44 ++---- ...ve-MgUserOnlineMeetingTranscriptContent.md | 44 ++---- ...rOnlineMeetingTranscriptMetadataContent.md | 44 ++---- .../Remove-MgUserPresence.md | 44 ++---- ...me-MgCommunicationCallScreenSharingRole.md | 48 +----- .../Send-MgCommunicationCallDtmfTone.md | 57 +++---- ...lineMeetingVirtualAppointmentReminderSm.md | 54 +++---- ...cationOnlineMeetingVirtualAppointmentSm.md | 54 +++---- ...lineMeetingVirtualAppointmentReminderSm.md | 58 +------ ...MgUserOnlineMeetingVirtualAppointmentSm.md | 58 +------ ...gCommunicationAdhocCallRecordingContent.md | 48 ++---- ...CommunicationAdhocCallTranscriptContent.md | 48 ++---- ...ationAdhocCallTranscriptMetadataContent.md | 46 ++---- ...ommunicationOnlineMeetingAttendeeReport.md | 46 ++---- ...ConversationOnlineMeetingAttendeeReport.md | 46 ++---- ...municationOnlineMeetingRecordingContent.md | 48 ++---- ...unicationOnlineMeetingTranscriptContent.md | 48 ++---- ...nOnlineMeetingTranscriptMetadataContent.md | 46 ++---- .../Set-MgCommunicationPresence.md | 60 +++----- ...gCommunicationPresenceAutomaticLocation.md | 54 +++---- ...t-MgCommunicationPresenceManualLocation.md | 54 +++---- ...et-MgCommunicationPresenceStatusMessage.md | 54 +++---- ...municationPresenceUserPreferredPresence.md | 58 +++---- .../Set-MgUserOnlineMeetingAttendeeReport.md | 46 ++---- ...Set-MgUserOnlineMeetingRecordingContent.md | 48 ++---- ...et-MgUserOnlineMeetingTranscriptContent.md | 48 ++---- ...rOnlineMeetingTranscriptMetadataContent.md | 46 ++---- .../Set-MgUserPresence.md | 64 ++------ .../Set-MgUserPresenceAutomaticLocation.md | 58 +++---- .../Set-MgUserPresenceManualLocation.md | 58 +++---- .../Set-MgUserPresenceStatusMessage.md | 65 ++------ ...Set-MgUserPresenceUserPreferredPresence.md | 62 ++------ ...MgCommunicationCallParticipantHoldMusic.md | 58 +------ ...Stop-MgCommunicationCallMediaProcessing.md | 59 ++------ ...MgCommunicationCallParticipantHoldMusic.md | 60 ++------ .../Update-MgCommunicationAdhocCall.md | 50 ++---- ...pdate-MgCommunicationAdhocCallRecording.md | 54 +++---- ...date-MgCommunicationAdhocCallTranscript.md | 52 +++---- ...te-MgCommunicationCallAudioRoutingGroup.md | 58 ++----- ...gCommunicationCallContentSharingSession.md | 48 ++---- .../Update-MgCommunicationCallOperation.md | 54 +++---- .../Update-MgCommunicationCallParticipant.md | 60 +++----- ...te-MgCommunicationCallRecordOrganizerV2.md | 48 ++---- ...-MgCommunicationCallRecordParticipantV2.md | 48 ++---- ...Update-MgCommunicationCallRecordSession.md | 56 +++---- ...date-MgCommunicationCallRecordingStatus.md | 60 ++------ .../Update-MgCommunicationOnlineMeeting.md | 70 ++++----- ...municationOnlineMeetingAttendanceReport.md | 51 +++---- ...MeetingAttendanceReportAttendanceRecord.md | 53 +++---- ...gCommunicationOnlineMeetingConversation.md | 56 +++---- ...icationOnlineMeetingConversationMessage.md | 60 +++----- ...nlineMeetingConversationMessageReaction.md | 50 ++---- ...onOnlineMeetingConversationMessageReply.md | 60 +++----- ...MeetingConversationMessageReplyReaction.md | 50 ++---- ...icationOnlineMeetingConversationStarter.md | 60 +++----- ...nlineMeetingConversationStarterReaction.md | 50 ++---- ...onOnlineMeetingConversationStarterReply.md | 60 +++----- ...MeetingConversationStarterReplyReaction.md | 50 ++---- ...e-MgCommunicationOnlineMeetingRecording.md | 54 +++---- ...-MgCommunicationOnlineMeetingTranscript.md | 52 +++---- .../Update-MgCommunicationPresence.md | 55 +++---- .../Update-MgUserOnlineMeeting.md | 81 +++------- ...ate-MgUserOnlineMeetingAttendanceReport.md | 51 +++---- ...MeetingAttendanceReportAttendanceRecord.md | 53 +++---- .../Update-MgUserOnlineMeetingRecording.md | 54 +++---- .../Update-MgUserOnlineMeetingTranscript.md | 52 +++---- .../Update-MgUserPresence.md | 55 +++---- 253 files changed, 3578 insertions(+), 9372 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 4eb59272b8630..704365c1b077c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgCommunicationCallLargeGalleryView --- @@ -16,9 +16,6 @@ title: Add-MgCommunicationCallLargeGalleryView Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster. -> [!NOTE] -> To view the beta release of this cmdlet, view [Add-MgBetaCommunicationCallLargeGalleryView](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Add-MgBetaCommunicationCallLargeGalleryView?view=graph-powershell-beta) - ## SYNTAX ### AddExpanded (Default) @@ -28,7 +25,6 @@ Add-MgCommunicationCallLargeGalleryView -CallId [-ResponseHeadersVariab [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Add @@ -39,7 +35,6 @@ Add-MgCommunicationCallLargeGalleryView -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -49,7 +44,7 @@ Add-MgCommunicationCallLargeGalleryView -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -60,7 +55,6 @@ Add-MgCommunicationCallLargeGalleryView -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +67,9 @@ This cmdlet has the following aliases, Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -94,10 +79,6 @@ $params = @{ Add-MgCommunicationCallLargeGalleryView -CallId $callId -BodyParameter $params -``` -This example shows how to use the Add-MgCommunicationCallLargeGalleryView Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +110,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +186,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -484,11 +465,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -512,27 +493,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Add-MgCommunicationCallLargeGalleryView](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview) +- [](https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 4a61e876596f9..25d2551ab8bc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresence --- @@ -17,9 +17,6 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### ClearExpanded (Default) @@ -29,7 +26,6 @@ Clear-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clear @@ -40,7 +36,6 @@ Clear-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentityExpanded @@ -51,7 +46,6 @@ Clear-MgCommunicationPresence -InputObject [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -62,7 +56,6 @@ Clear-MgCommunicationPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,6 +69,16 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -107,7 +110,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -402,7 +405,7 @@ HelpMessage: '' ### -SessionId - +. ```yaml Type: System.String @@ -483,11 +486,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SessionId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -511,28 +514,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence) +- [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index 8e2e1c4f73af8..78a11f4292dcd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceAutomaticLocation --- @@ -16,9 +16,6 @@ title: Clear-MgCommunicationPresenceAutomaticLocation Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceAutomaticLocation?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -28,7 +25,6 @@ Clear-MgCommunicationPresenceAutomaticLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -38,7 +34,6 @@ Clear-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -360,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -384,28 +389,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgCommunicationPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation) +- [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index ff5bd4bb40929..6ef89324dcbe9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceLocation --- @@ -15,9 +15,6 @@ title: Clear-MgCommunicationPresenceLocation Clear the work location signals for a user, including both the manual and automatic layers for the current date. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceLocation?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -27,7 +24,6 @@ Clear-MgCommunicationPresenceLocation -PresenceId [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +33,6 @@ Clear-MgCommunicationPresenceLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Clear the work location signals for a user, including both the manual and automatic layers for the current date. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -358,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -382,28 +387,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgCommunicationPresenceLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation) +- [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index 593b4f609e868..9e52e2aa5b207 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceUserPreferredPresence --- @@ -15,9 +15,6 @@ title: Clear-MgCommunicationPresenceUserPreferredPresence Clear the preferred availability and activity status for a user. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceUserPreferredPresence?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -27,7 +24,6 @@ Clear-MgCommunicationPresenceUserPreferredPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +33,6 @@ Clear-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Clear the preferred availability and activity status for a user. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -358,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -382,28 +387,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgCommunicationPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence) +- [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index bf42eac6b51e6..e6c20562b8892 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresence --- @@ -17,9 +17,6 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresence?view=graph-powershell-beta) - ## SYNTAX ### ClearExpanded (Default) @@ -29,7 +26,6 @@ Clear-MgUserPresence -UserId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clear @@ -40,7 +36,6 @@ Clear-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentityExpanded @@ -50,7 +45,6 @@ Clear-MgUserPresence -InputObject [-ResponseHeade [-AdditionalProperties ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -61,7 +55,6 @@ Clear-MgUserPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -96,10 +80,6 @@ $params = @{ Clear-MgUserPresence -UserId $userId -BodyParameter $params -``` -This example shows how to use the Clear-MgUserPresence Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -399,7 +379,7 @@ HelpMessage: '' ### -SessionId - +. ```yaml Type: System.String @@ -507,11 +487,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [SessionId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -535,27 +515,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence) +- [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index bdab99258433e..8d7da343847df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceAutomaticLocation --- @@ -16,9 +16,6 @@ title: Clear-MgUserPresenceAutomaticLocation Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceAutomaticLocation?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -28,7 +25,6 @@ Clear-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -38,7 +34,6 @@ Clear-MgUserPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,15 @@ This cmdlet has the following aliases, Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +# A UPN can also be used as -UserId. +Clear-MgUserPresenceAutomaticLocation -UserId $userId + ## PARAMETERS ### -Break @@ -360,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -384,28 +388,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgUserPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation) +- [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index eb9bc051fe837..521e782df547b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceLocation --- @@ -15,9 +15,6 @@ title: Clear-MgUserPresenceLocation Clear the work location signals for a user, including both the manual and automatic layers for the current date. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceLocation?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -27,7 +24,6 @@ Clear-MgUserPresenceLocation -UserId [-ResponseHeadersVariable [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +33,6 @@ Clear-MgUserPresenceLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,15 @@ This cmdlet has the following aliases, Clear the work location signals for a user, including both the manual and automatic layers for the current date. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +# A UPN can also be used as -UserId. +Clear-MgUserPresenceLocation -UserId $userId + ## PARAMETERS ### -Break @@ -358,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -382,28 +386,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgUserPresenceLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation) +- [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index c38af00450eaa..f2dc08ee27a3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceUserPreferredPresence --- @@ -15,9 +15,6 @@ title: Clear-MgUserPresenceUserPreferredPresence Clear the preferred availability and activity status for a user. -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceUserPreferredPresence?view=graph-powershell-beta) - ## SYNTAX ### Clear (Default) @@ -27,7 +24,6 @@ Clear-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +33,6 @@ Clear-MgUserPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Clear the preferred availability and activity status for a user. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Clear-MgUserPresenceUserPreferredPresence -UserId $userId -``` -This example shows how to use the Clear-MgUserPresenceUserPreferredPresence Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +385,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgUserPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence) +- [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index cd860c4482cec..0c49f78cf6119 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCall --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCall Get adhocCalls from communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationAdhocCall [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgCommunicationAdhocCall [-ExpandProperty ] [-Property ] Get-MgCommunicationAdhocCall -AdhocCallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgCommunicationAdhocCall -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, Get adhocCalls from communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -519,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -543,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index 01c45ece4b474..ae62aa1707924 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCallCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationAdhocCallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index e110f79c2ba0a..5557e6a3f29de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecording --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationAdhocCallRecording The recordings of a call. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationAdhocCallRecording [-ExpandProperty ] [-Property ] [-Top ] [-UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -40,7 +37,7 @@ Get-MgCommunicationAdhocCallRecording -AdhocCallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -50,7 +47,7 @@ Get-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -60,7 +57,7 @@ Get-MgCommunicationAdhocCallRecording -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, The recordings of a call. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -674,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -698,27 +705,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 33380523da91c..332d74ce34c1b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordin Get-MgCommunicationAdhocCallRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index 978cafb29ca6f..9665ae69253f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCallRecordingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallRecordingCount -AdhocCallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationAdhocCallRecordingCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index 7d2a375761890..11b45e4a7d364 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingDelta --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCallRecordingDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationAdhocCallRecordingDelta -AdhocCallId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -39,7 +36,7 @@ Get-MgCommunicationAdhocCallRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, Invoke function delta +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -532,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -556,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index 8ba17dc060d60..8162d6df7201b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscript --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationAdhocCallTranscript The transcripts of a call. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationAdhocCallTranscript [-ExpandProperty ] [-Property < [-StartDateTime ] [-Top ] [-UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -40,7 +37,7 @@ Get-MgCommunicationAdhocCallTranscript -AdhocCallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -50,7 +47,7 @@ Get-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptId < [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -60,7 +57,7 @@ Get-MgCommunicationAdhocCallTranscript -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, The transcripts of a call. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -674,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -698,27 +705,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index 91ec84a1e3c1d..91232e5c516ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscr Get-MgCommunicationAdhocCallTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index 18d0b1926a0fb..7fbe3d61a46c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCallTranscriptCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallTranscriptCount -AdhocCallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationAdhocCallTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index b5ea41693cdde..05c56fd65a2dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptDelta --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationAdhocCallTranscriptDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationAdhocCallTranscriptDelta -AdhocCallId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -39,7 +36,7 @@ Get-MgCommunicationAdhocCallTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, Invoke function delta +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -532,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -556,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index c814ec93d82c7..fafa022aaa1d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId Get-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -381,27 +388,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index e589432122f31..a3bf65737fda9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCall --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCall Retrieve the properties and relationships of a call object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Retrieve the properties and relationships of a call object. Get-MgCommunicationCall -CallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgCommunicationCall -CallId [-ExpandProperty ] [-Property Get-MgCommunicationCall -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,38 +44,20 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a call object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Getting a Peer-to-Peer call -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId -``` -This example shows getting a peer-to-peer call - -### Example 2: Getting a group call - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId -``` -This example shows getting a group call - - ## PARAMETERS ### -Break @@ -367,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -391,27 +370,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 12cb9f0ee2bfa..970de7eb6455e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallAudioRoutingGroup --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallAudioRoutingGroup Retrieve the properties and relationships of an audioRoutingGroup object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationCallAudioRoutingGroup -CallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallId < [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationCallAudioRoutingGroup -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of an audioRoutingGroup object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallAudioRoutingGroup -CallId $callId -``` -This example shows how to use the Get-MgCommunicationCallAudioRoutingGroup Cmdlet. - - ## PARAMETERS ### -All @@ -568,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -592,28 +576,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup) +- [](https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index 3aec86d4b748f..f92c0239da077 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallAudioRoutingGroupCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallAudioRoutingGroupCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallAudioRoutingGroupCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallAudioRoutingGroupCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallAudioRoutingGroupCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationCallAudioRoutingGroupCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallAudioRoutingGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 6134b88525666..e959321912fb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallContentSharingSession --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallContentSharingSession Retrieve the properties of a contentSharingSession object in a call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationCallContentSharingSession -CallId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationCallContentSharingSession -CallId -ContentSharingSes [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationCallContentSharingSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties of a contentSharingSession object in a call. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallContentSharingSession -CallId $callId -``` -This example shows how to use the Get-MgCommunicationCallContentSharingSession Cmdlet. - - ## PARAMETERS ### -All @@ -572,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -596,28 +580,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession) +- [](https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index 03115651c612e..b3afc0f388585 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallContentSharingSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallContentSharingSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallContentSharingSessionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallContentSharingSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallContentSharingSessionCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationCallContentSharingSessionCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallContentSharingSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index c8e46ec865911..27eb074403f96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationCallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 48e14473b38e4..2907b5201ab9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallOperation --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallOperation Get the status of an operation that adds the large gallery view to a call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallOperation?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationCallOperation -CallId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationCallOperation -CallId -CommsOperationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationCallOperation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,18 +58,13 @@ This cmdlet has the following aliases, Get the status of an operation that adds the large gallery view to a call. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallOperation -CallId $callId -CommsOperationId $commsOperationId -``` -This example shows how to use the Get-MgCommunicationCallOperation 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -584,27 +576,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation) +- [](https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index 3ac161392ec93..cd68ad1c2fc57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallOperationCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallOperationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallOperationCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallOperationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallOperationCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgCommunicationCallOperationCount -CallId [-Filter ] [-Sear Get-MgCommunicationCallOperationCount -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallOperationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index d286ec1dbf7f0..3f8a38d13b90a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallParticipant --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallParticipant Retrieve the properties and relationships of a participant object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationCallParticipant -CallId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationCallParticipant -CallId -ParticipantId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationCallParticipant -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a participant object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId -``` -This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. - - ## PARAMETERS ### -All @@ -568,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -592,28 +576,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant) +- [](https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 97591d5ceee2e..0c2e096fafada 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallParticipantCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallParticipantCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallParticipantCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallParticipantCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallParticipantCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationCallParticipantCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallParticipantCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index 80aa9f1d7f300..f34fdd4a45fd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecord --- @@ -14,12 +14,9 @@ title: Get-MgCommunicationCallRecord ## SYNOPSIS Retrieve the properties and relationships of a callRecord object. -You can get the id of a callRecord in two ways:\r* Subscribe to change notifications to the /communications/callRecords endpoint.\r* Use the callChainId property of a call. +You can get the id of a callRecord in two ways:\r\n* Subscribe to change notifications to the /communications/callRecords endpoint.\r\n* Use the callChainId property of a call. The call record is available only after the associated call is completed. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecord?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ The call record is available only after the associated call is completed. Get-MgCommunicationCallRecord -CallRecordId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationCallRecord -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,32 +46,22 @@ This cmdlet has the following aliases, ## DESCRIPTION Retrieve the properties and relationships of a callRecord object. -You can get the id of a callRecord in two ways:\r* Subscribe to change notifications to the /communications/callRecords endpoint.\r* Use the callChainId property of a call. +You can get the id of a callRecord in two ways:\r\n* Subscribe to change notifications to the /communications/callRecords endpoint.\r\n* Use the callChainId property of a call. The call record is available only after the associated call is completed. ## EXAMPLES -### Example 1: Get basic details -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId -``` -This example will get basic details - -### Example 2: Get full details - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" - -``` -This example will get full details - +Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" ## PARAMETERS @@ -364,7 +351,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,27 +375,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord) -- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord) +- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index ddc418142bf0c..77f61f5c1a2fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallRecordCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationCallRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index 3cab8406509c2..57abc5c0caf0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordOrganizerV2 --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationCallRecordOrganizerV2 Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ This relationship is expanded by default in callRecord methods. Get-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -338,7 +345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -362,27 +369,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index 20121c5ea90bf..77ce040d4ec15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordParticipant --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallRecordParticipant Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordParticipant?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallRecordParticipant -CallRecordId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationCallRecordParticipant -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index d94b2ebfb8388..2645b985db551 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordParticipantV2 --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallRecordParticipantV2 List of distinct participants in the call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationCallRecordParticipantV2 -CallRecordId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationCallRecordParticipantV2 -CallRecordId -ParticipantId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,18 +58,13 @@ This cmdlet has the following aliases, List of distinct participants in the call. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordParticipantV2 -CallRecordId $callRecordId -``` -This example shows how to use the Get-MgCommunicationCallRecordParticipantV2 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -584,27 +576,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2) -- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2) +- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index 451627cddc387..54e68404b13b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSession --- @@ -18,9 +18,6 @@ Peer-to-peer calls typically only have one session, whereas group calls typicall Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgCommunicationCallRecordSession -CallRecordId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgCommunicationCallRecordSession -CallRecordId -SessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +48,7 @@ Get-MgCommunicationCallRecordSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -67,28 +64,18 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Get session list -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -``` -This example will get session list - -### Example 2: Get session list with segments - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" - -``` -This example will get session list with segments - +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" ## PARAMETERS @@ -577,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -601,27 +588,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession) +- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index f5989b8633b20..8a9bdc559259f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallRecordSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSessionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationCallRecordSessionCount -CallRecordId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationCallRecordSessionCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 2546b322409df..1412c57a5acfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSessionSegmentCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationCallRecordSessionSegmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSessionSegmentCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSessionSegmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationCallRecordSessionSegmentCount -CallRecordId -Session [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationCallRecordSessionSegmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -356,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationCallRecordSessionSegmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 8028b468aad57..6c6082b43cc30 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeeting --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeeting Get onlineMeetings from communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +35,6 @@ Get-MgCommunicationOnlineMeeting -OnlineMeetingId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -49,7 +44,7 @@ Get-MgCommunicationOnlineMeeting -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### List @@ -60,7 +55,7 @@ Get-MgCommunicationOnlineMeeting [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [-WhatIf] [-Confirm] [] + [-CountVariable ] [-WhatIf] [-Confirm] ``` ### Get1 @@ -71,7 +66,6 @@ Get-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -84,17 +78,12 @@ This cmdlet has the following aliases, Get onlineMeetings from communications ## EXAMPLES -### Example 1: Retrieve an online meeting by videoTeleconferenceId -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" - -``` -This example will retrieve an online meeting by videoteleconferenceid - +Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ## PARAMETERS @@ -142,7 +131,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -252,7 +241,7 @@ HelpMessage: '' ### -EndDateTime - +. ```yaml Type: System.DateTime @@ -307,7 +296,7 @@ HelpMessage: '' ### -ExternalId - +. ```yaml Type: System.String @@ -681,7 +670,7 @@ HelpMessage: '' ### -StartDateTime - +. ```yaml Type: System.DateTime @@ -702,7 +691,7 @@ HelpMessage: '' ### -Subject - +. ```yaml Type: System.String @@ -799,7 +788,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -827,13 +816,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -854,7 +843,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -874,28 +863,6 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Get-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index 1186f11a124a8..954b856dd1ae5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReport --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReport The attendance reports of an online meeting. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +59,16 @@ This cmdlet has the following aliases, The attendance reports of an online meeting. Read-only. +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -574,28 +580,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 5db580640ed36..42e8c6141df83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceReco -MeetingAttendanceReportId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +60,16 @@ This cmdlet has the following aliases, List of attendance records of an attendance report. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -577,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -601,28 +608,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index bbcdf0011c154..e2ae6e80593ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount -MeetingAttendanceReportId -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index a14cf9ef0ebe9..84d2ab2ac3457 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingAttendanceReportCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index b4195fb739dde..28114e92bdb3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -OutFil Get-MgCommunicationOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -359,27 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index b5294b66268c7..5d0cc27c866c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversation --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversation A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversation [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversatio [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgCommunicationOnlineMeetingConversation -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -544,27 +551,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index e07c1a571048d..9b6902145203a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingConversationCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index a72f192a71e1f..1d6a36ed84b30 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessage --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessage The messages in a Viva Engage conversation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMessa -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, The messages in a Viva Engage conversation. +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -572,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index ff9d984caea71..5d79463a35974 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageConversation --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageConversation?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +49,16 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -361,7 +368,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -385,27 +392,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index 4a15f1a0495ad..e3945c9cb4dfe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageCount -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -359,27 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index c97e76bd9426a..7e303fdd5bf37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReaction A collection of reactions (such as like and smile) that users have applied to this message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +47,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +59,14 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +Get-MgCommunicationOnlineMeetingConversationMessageReaction -OnlineMeetingEngagementConversationId $onlineMeetingEngagementConversationId -EngagementConversationMessageId $engagementConversationMessageId + ## PARAMETERS ### -All @@ -577,7 +581,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -601,29 +605,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction) -- [Graph API Reference](https://learn.microsoft.com/graph/api/engagementconversationdiscussionmessage-list-reactions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction) +- [](https://learn.microsoft.com/graph/api/engagementconversationdiscussionmessage-list-reactions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index 029856f69cef0..2c7ebc46a5669 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReactionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReactionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReactionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReactionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -381,27 +388,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index 5f9d9b845fbc8..be5c662624eca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReply A collection of messages that are replies to this message and form a threaded discussion. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, A collection of messages that are replies to this message and form a threaded discussion. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -576,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -600,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index 1efd4150cb32e..07d07a3204641 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyConversation?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +49,16 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -382,7 +389,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -406,27 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index c4e2bd81b52f8..d380520445390 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -381,27 +388,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReplyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 07f953355fba2..f71c59b05882a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction A collection of reactions (such as like and smile) that users have applied to this message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -42,7 +39,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +49,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,6 +61,16 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -605,7 +612,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -629,27 +636,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index dbf93666cc7ea..b30a6a3a75fc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReactionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,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 @@ -378,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -402,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 3634ca8cc54df..0020f078bbc49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyTo --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyTo The parent message to which this message is a reply, if it is part of a reply chain. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyTo](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyTo?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -EngagementConversati -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get1 @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -EngagementConversati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +45,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -58,7 +55,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -70,6 +67,16 @@ This cmdlet has the following aliases, The parent message to which this message is a reply, if it is part of a reply chain. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -418,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -442,27 +449,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationMessageReplyTo](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index d0e47139b718c..8dea15f33eb1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationOnlineMeeting --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationOnlineMeeting The online meeting associated with the conversation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeeting -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeeting -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The online meeting associated with the conversation. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -361,27 +368,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 1d63fe4b72a47..c0854ab509333 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport -OnlineMeetingEngagementConversationId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -361,27 +368,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index a44533401d551..4380e6a2c7b7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarter --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarter The first message in a Viva Engage conversation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationStarter -OnlineMeetingEngagementConv [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The first message in a Viva Engage conversation. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -361,27 +368,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index dfd1abe85226a..4daeb33bc9f97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterConversation --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterConversation?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -339,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -363,27 +370,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index eb10924ad9b13..658c17fd7fd14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReaction A collection of reactions (such as like and smile) that users have applied to this message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -573,27 +580,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index 00c3149ea745b..3b4b3b5008f18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReactionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReactionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReactionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReactionCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReactionCount -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 @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -359,27 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index 08f5f68c885c1..63e224d86ee98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReply A collection of messages that are replies to this message and form a threaded discussion. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply -EngagementConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, A collection of messages that are replies to this message and form a threaded discussion. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -572,27 +579,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index 12a741dfa3b4b..5fa2eea9f159e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyConversation?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +49,16 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -361,7 +368,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -385,27 +392,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index aa8b4ed273c54..7b8a6cdc5a460 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyCount -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 @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -359,27 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReplyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 517c37e0d9d98..110b4f16e15ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction A collection of reactions (such as like and smile) that users have applied to this message. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +47,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +59,16 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -577,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index 6c5ba44c792db..8145a5910fd1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReactionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -381,27 +388,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index edea9a9da0cce..b308a20ebf372 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyTo --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyTo The parent message to which this message is a reply, if it is part of a reply chain. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyTo](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyTo?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get1 @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +45,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -58,7 +55,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -70,6 +67,16 @@ This cmdlet has the following aliases, The parent message to which this message is a reply, if it is part of a reply chain. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -391,7 +398,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -415,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingConversationStarterReplyTo](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index 01183714cef4d..c4320db76a47a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingCount [-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) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index 179814b8c8290..61c6d006c5335 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingMessage --- @@ -15,10 +15,7 @@ title: Get-MgCommunicationOnlineMeetingMessage Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. -The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingMessage?view=graph-powershell-beta) +The export includes:\r\n- The original question or discussion text\r\n- The user who posted the message\r\n- All replies and responders\r\n- Vote counts\r\n- Moderation status (pending or dismissed)\r\n- Private replies\r\n- The meeting ID and organizer ID that are used for mapping to meeting metadata. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingMessage [-Count] [-ExpandProperty ] [- [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -41,7 +38,15 @@ This cmdlet has the following aliases, Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. -The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. +The export includes:\r\n- The original question or discussion text\r\n- The user who posted the message\r\n- All replies and responders\r\n- Vote counts\r\n- Moderation status (pending or dismissed)\r\n- Private replies\r\n- The meeting ID and organizer ID that are used for mapping to meeting metadata. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +Get-MgCommunicationOnlineMeetingMessage -ExpandProperty "conversation" ## PARAMETERS @@ -409,28 +414,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudcommunications-getallonlinemeetingmessages?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage) +- [](https://learn.microsoft.com/graph/api/cloudcommunications-getallonlinemeetingmessages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index e6a099ea238d4..17e834d2f6d88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecording --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingRecording The recordings of an online meeting. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingRecording [-ExpandProperty ] [-Propert [-Search ] [-Skip ] [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMeeti [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -50,7 +47,7 @@ Get-MgCommunicationOnlineMeetingRecording -OnlineMeetingId [-ExpandProp [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity @@ -60,7 +57,7 @@ Get-MgCommunicationOnlineMeetingRecording -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, The recordings of an online meeting. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -674,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -698,28 +705,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index 086bd3af538d7..a20a1320e0de7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -Onli Get-MgCommunicationOnlineMeetingRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index 6f6ad6c1c18cd..f6756e552e42c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingRecordingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingRecordingCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationOnlineMeetingRecordingCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index 43f17f5747bc9..61fd2a8b51618 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingDelta --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingRecordingDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,6 @@ Get-MgCommunicationOnlineMeetingRecordingDelta -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +36,7 @@ Get-MgCommunicationOnlineMeetingRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +48,16 @@ This cmdlet has the following aliases, Invoke function delta +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -533,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -557,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index 7a55a63e825bd..753bf0ef501db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscript --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingTranscript The transcripts of an online meeting. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -29,7 +26,7 @@ Get-MgCommunicationOnlineMeetingTranscript [-ExpandProperty ] [-Proper [-Search ] [-Skip ] [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get @@ -39,7 +36,7 @@ Get-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -OnlineMee [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -50,7 +47,7 @@ Get-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity @@ -60,7 +57,7 @@ Get-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, The transcripts of an online meeting. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -674,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -698,28 +705,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index a60803aa0ea14..1d11542d308d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId Get-MgCommunicationOnlineMeetingTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -381,27 +388,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index 48958c6b768bf..0d88787262a33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingTranscriptCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingTranscriptCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgCommunicationOnlineMeetingTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -334,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -358,27 +365,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index 67561b723a523..72e6fd37ad5a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptDelta --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationOnlineMeetingTranscriptDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,6 @@ Get-MgCommunicationOnlineMeetingTranscriptDelta -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +36,7 @@ Get-MgCommunicationOnlineMeetingTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +48,16 @@ This cmdlet has the following aliases, Invoke function delta +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -533,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -557,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 821b2373075a5..06b040cff2c28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Get-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -382,27 +389,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index 363c2eedd799e..70a1b3f304061 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl --- @@ -17,9 +17,6 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ With Teams Premium, you can configure a custom lobby room experience for attende Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,6 +49,16 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -296,7 +303,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -320,28 +327,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl) +- [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index d998574ac59c2..b506aadc51007 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresence --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationPresence Get a user's presence information. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgCommunicationPresence [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgCommunicationPresence [-ExpandProperty ] [-Property ] Get-MgCommunicationPresence -PresenceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgCommunicationPresence -PresenceId [-ExpandProperty ] [- Get-MgCommunicationPresence -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,18 +56,13 @@ This cmdlet has the following aliases, Get a user's presence information. ## EXAMPLES -### Example 1: Get the presence information of another user -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationPresence -PresenceId $presenceId -``` -This example will get the presence information of another user - - ## PARAMETERS ### -All @@ -531,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -555,27 +547,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence) +- [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 4491cae69fbb1..998d8256c748f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencebyuserid Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresenceByUserId --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationPresenceByUserId Get the presence information for multiple users. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresenceByUserId](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresenceByUserId?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -27,7 +24,6 @@ Get-MgCommunicationPresenceByUserId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -38,7 +34,6 @@ Get-MgCommunicationPresenceByUserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,18 +45,9 @@ This cmdlet has the following aliases, Get the presence information for multiple users. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.Read.All, Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -74,10 +60,6 @@ $params = @{ Get-MgCommunicationPresenceByUserId -BodyParameter $params -``` -This example shows how to use the Get-MgCommunicationPresenceByUserId Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -103,7 +85,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -231,7 +213,7 @@ HelpMessage: '' ### -Ids - +. ```yaml Type: System.String[] @@ -387,34 +369,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Ids ]: ## RELATED LINKS -- [Get-MgCommunicationPresenceByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencebyuserid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencebyuserid) +- [](https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md index a5369afbe4b13..705df646515dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencecount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresenceCount --- @@ -15,9 +15,6 @@ title: Get-MgCommunicationPresenceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresenceCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresenceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgCommunicationPresenceCount [-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) | Presence.Read, Presence.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.Read.All, Presence.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgCommunicationPresenceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index 5d6cad2c116aa..7bd6c270679e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeeting --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeeting Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +35,6 @@ Get-MgUserOnlineMeeting -OnlineMeetingId -UserId [-ExpandPrope [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### List @@ -50,7 +45,7 @@ Get-MgUserOnlineMeeting -UserId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [-WhatIf] [-Confirm] [] + [-CountVariable ] [-WhatIf] [-Confirm] ``` ### Get1 @@ -61,7 +56,6 @@ Get-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -73,7 +67,7 @@ Get-MgUserOnlineMeeting -InputObject [-Participants ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity1 @@ -84,7 +78,6 @@ Get-MgUserOnlineMeeting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -94,7 +87,6 @@ Get-MgUserOnlineMeeting -InputObject [-ExpandProp [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -106,51 +98,28 @@ This cmdlet has the following aliases, Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | - ## EXAMPLES -### Example 1: Retrieve an online meeting by meeting ID -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -``` -This example will retrieve an online meeting by meeting id - -### Example 2: Retrieve an online meeting by joinWebUrl - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. -Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" - -``` -This example will retrieve an online meeting by joinweburl +Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" -### Example 3: Retrieve an online meeting by joinMeetingId - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. -Get-MgUserOnlineMeeting -UserId $userId -Filter "joinMeetingIdSettings/joinMeetingId eq '1234567890'" - -``` -This example will retrieve an online meeting by joinmeetingid - +Get-MgUserOnlineMeeting -UserId $userId -Filter "joinMeetingIdSettings/joinMeetingId eq '1234567890'" ## PARAMETERS @@ -204,7 +173,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -326,7 +295,7 @@ HelpMessage: '' ### -EndDateTime - +. ```yaml Type: System.DateTime @@ -387,7 +356,7 @@ HelpMessage: '' ### -ExternalId - +. ```yaml Type: System.String @@ -785,7 +754,7 @@ HelpMessage: '' ### -StartDateTime - +. ```yaml Type: System.DateTime @@ -812,7 +781,7 @@ HelpMessage: '' ### -Subject - +. ```yaml Type: System.String @@ -954,7 +923,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -982,13 +951,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1009,7 +978,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -1029,27 +998,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Get-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeeting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeeting) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index f3ea784be7eec..e257e1003e4f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReport --- @@ -16,9 +16,6 @@ title: Get-MgUserOnlineMeetingAttendanceReport The attendance reports of an online meeting. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId -OnlineMeetingId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgUserOnlineMeetingAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,28 +59,15 @@ This cmdlet has the following aliases, The attendance reports of an online meeting. Read-only. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -``` -This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. - - ## PARAMETERS ### -All @@ -599,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -623,26 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f72fdcee8607e..c1650318452d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -16,9 +16,6 @@ title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +48,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,19 +62,14 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES -### Example 1: List attendance records -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -``` -This example will list attendance records - - ## PARAMETERS ### -All @@ -619,7 +611,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -643,26 +635,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 367ba5d24da98..42c5869ad86b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount -MeetingAttendanceR -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -385,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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index 95e8f74c3418a..8a33b9ac60c7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportCount --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingAttendanceReportCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgUserOnlineMeetingAttendanceReportCount -OnlineMeetingId -UserId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgUserOnlineMeetingAttendanceReportCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -364,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index c01bfbf8abe2f..70f24476ab832 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Get-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId Get-MgUserOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,28 +46,15 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingArtifact.Read.All, | - ## EXAMPLES -### Example 1: Fetch attendee report of a Teams live event -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendeeReport -UserId $userId -OnlineMeetingId $onlineMeetingId -``` -This example will fetch attendee report of a teams live event - - ## PARAMETERS ### -Break @@ -378,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -402,26 +386,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index b07da9ee6fc8e..79fa218e07b64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingCount --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserOnlineMeetingCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserOnlineMeetingCount -UserId [-Filter ] [-Search [-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) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index 031becb26257f..6ca7c39a5138d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecording --- @@ -18,9 +18,6 @@ This API supports the retrieval of call recordings from all meeting types except For a recording, this API returns the metadata of the single recording associated with the online meeting or an ad hoc call. For the content of a recording, this API returns the stream of bytes associated with the recording. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -32,7 +29,7 @@ Get-MgUserOnlineMeetingRecording -UserId [-ExpandProperty ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -42,7 +39,7 @@ Get-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### List @@ -54,7 +51,6 @@ Get-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### GetViaIdentity1 @@ -66,7 +62,7 @@ Get-MgUserOnlineMeetingRecording -InputObject [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -76,7 +72,7 @@ Get-MgUserOnlineMeetingRecording -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -91,27 +87,14 @@ This API supports the retrieval of call recordings from all meeting types except For a recording, this API returns the metadata of the single recording associated with the online meeting or an ad hoc call. For the content of a recording, this API returns the stream of bytes associated with the recording. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | - ## EXAMPLES -### Example 1: Get a callRecording -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingRecording -UserId $userId -OnlineMeetingId $onlineMeetingId -CallRecordingId $callRecordingId -``` -This example will get a callrecording - - ## PARAMETERS ### -All @@ -806,7 +789,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -830,28 +813,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording) -- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecording-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording) +- [](https://learn.microsoft.com/graph/api/callrecording-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 593ef4c5faed8..2c01700ab7594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Get-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting Get-MgUserOnlineMeetingRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,13 +47,15 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -386,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -410,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index cdc3b14080e5f..7d39e3a122f4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingCount --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingRecordingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserOnlineMeetingRecordingCount -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserOnlineMeetingRecordingCount -OnlineMeetingId -UserId Get-MgUserOnlineMeetingRecordingCount -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) | OnlineMeetingRecording.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -362,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -386,27 +385,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index d67361934953e..a6d257f583e51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingDelta --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingRecordingDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,6 @@ Get-MgUserOnlineMeetingRecordingDelta -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +36,7 @@ Get-MgUserOnlineMeetingRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,13 +48,15 @@ This cmdlet has the following aliases, Invoke function delta -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -562,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -586,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 11e2a7f57bb02..80cfbab2ffb61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscript --- @@ -18,9 +18,6 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### Get1 (Default) @@ -32,7 +29,7 @@ Get-MgUserOnlineMeetingTranscript -UserId [-ExpandProperty ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -42,7 +39,7 @@ Get-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### List @@ -54,7 +51,6 @@ Get-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### GetViaIdentity1 @@ -66,7 +62,7 @@ Get-MgUserOnlineMeetingTranscript -InputObject [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -76,7 +72,7 @@ Get-MgUserOnlineMeetingTranscript -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -91,27 +87,14 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | - ## EXAMPLES -### Example 1: Get a callTranscript -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -``` -This example will get a calltranscript - - ## PARAMETERS ### -All @@ -806,7 +789,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -830,29 +813,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript) +- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 41ff685646264..058400b3b1ebd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptContent --- @@ -18,9 +18,6 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -30,7 +27,7 @@ Get-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti Get-MgUserOnlineMeetingTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,37 +51,19 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | - ## EXAMPLES -### Example 1: Get a callTranscript content -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -``` -This example will get a calltranscript content - -### Example 2: Get a callTranscript content specifying $format query param - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications -Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" - -``` -This example will get a calltranscript content specifying $format query param - +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" ## PARAMETERS @@ -414,7 +393,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -438,27 +417,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent) +- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index d62fece7e7029..6798a07914515 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptCount --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingTranscriptCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserOnlineMeetingTranscriptCount -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgUserOnlineMeetingTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -363,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -387,27 +386,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index 832664272653d..df7f78593c8b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptDelta --- @@ -15,9 +15,6 @@ title: Get-MgUserOnlineMeetingTranscriptDelta Invoke function delta -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -29,7 +26,6 @@ Get-MgUserOnlineMeetingTranscriptDelta -OnlineMeetingId -UserId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +36,7 @@ Get-MgUserOnlineMeetingTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -52,13 +48,15 @@ This cmdlet has the following aliases, Invoke function delta -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | +{{ Add code here }} ## PARAMETERS @@ -562,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -586,27 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index e35a7f147d402..a2338824e1e54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -18,9 +18,6 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -30,7 +27,7 @@ Get-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId -OnlineMeetingId -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId Get-MgUserOnlineMeetingTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,27 +51,14 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | - ## EXAMPLES -### Example 1: Get a callTranscript metadataContent -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscriptMetadataContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -``` -This example will get a calltranscript metadatacontent - - ## PARAMETERS ### -Break @@ -403,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -427,27 +411,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent) +- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index 257fdfda33edc..46605ace61b21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl --- @@ -17,9 +17,6 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ With Teams Premium, you can configure a custom lobby room experience for attende Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId -U Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,28 +48,15 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualAppointment.Read, VirtualAppointment.ReadWrite, OnlineMeetings.ReadWrite, OnlineMeetings.Read, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualAppointment.Read.All, VirtualAppointment.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -UserId $userId -OnlineMeetingId $onlineMeetingId -``` -This example shows how to use the Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl Cmdlet. - - ## PARAMETERS ### -Break @@ -338,7 +322,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -362,27 +346,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl) +- [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index c3506789cd57f..2e320f4b71454 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserPresence --- @@ -15,9 +15,6 @@ title: Get-MgUserPresence Get a user's presence information. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserPresence?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get a user's presence information. Get-MgUserPresence -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserPresence -UserId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,39 +44,21 @@ This cmdlet has the following aliases, Get a user's presence information. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.Read, Presence.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.Read.All, Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Get your own presence information -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserPresence -UserId $userId -``` -This example will get your own presence information - -### Example 2: Get the presence information of another user - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications Get-MgUserPresence -UserId $userId -``` -This example will get the presence information of another user - - ## PARAMETERS ### -Break @@ -368,7 +347,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -392,27 +371,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence) +- [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index 1e5ed38aae498..fbf2499dd11e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAnswerCommunicationCall --- @@ -20,9 +20,6 @@ The bot is expected to answer, reject, or redirect the call before the call time The current timeout value is 15 seconds for regular scenarios and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios: -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaAnswerCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaAnswerCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### AnswerExpanded (Default) @@ -34,7 +31,6 @@ Invoke-MgAnswerCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Answer @@ -45,7 +41,6 @@ Invoke-MgAnswerCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AnswerViaIdentityExpanded @@ -57,7 +52,6 @@ Invoke-MgAnswerCommunicationCall -InputObject [-MediaConfig ] [-ParticipantCapacity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AnswerViaIdentity @@ -68,7 +62,6 @@ Invoke-MgAnswerCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -85,18 +78,9 @@ The bot is expected to answer, reject, or redirect the call before the call time The current timeout value is 15 seconds for regular scenarios and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios: -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | - ## EXAMPLES -### Example 1: Answer a Peer-to-Peer VoIP call with service hosted media -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -118,12 +102,7 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will answer a peer-to-peer voip call with service hosted media - -### Example 2: Answer VOIP call with application hosted media - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -141,12 +120,7 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will answer voip call with application hosted media - -### Example 3: Answer a policy-based recording call - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications @@ -163,15 +137,11 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will answer a policy-based recording call - - ## PARAMETERS ### -AcceptedModalities - +. ```yaml Type: System.String[] @@ -225,7 +195,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -274,7 +244,7 @@ HelpMessage: '' ### -CallbackUri - +. ```yaml Type: System.String @@ -495,7 +465,7 @@ HelpMessage: '' ### -ParticipantCapacity - +. ```yaml Type: System.Int32 @@ -682,7 +652,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AcceptedModalities ]: [CallOptions ]: incomingCallOptions @@ -696,7 +666,7 @@ BODYPARAMETER `]: This indicates any property can be added to this object. [ParticipantCapacity ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -720,27 +690,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgAnswerCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index 6767fc27dbf7c..5e27f69841813 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgCreateOrGetCommunicationOnlineMeeting --- @@ -16,9 +16,6 @@ title: Invoke-MgCreateOrGetCommunicationOnlineMeeting Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded1 (Default) @@ -30,7 +27,6 @@ Invoke-MgCreateOrGetCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create1 @@ -41,7 +37,6 @@ Invoke-MgCreateOrGetCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,6 +49,16 @@ This cmdlet has the following aliases, Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -79,7 +84,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -166,7 +171,7 @@ HelpMessage: '' ### -EndDateTime - +. ```yaml Type: System.DateTime @@ -187,7 +192,7 @@ HelpMessage: '' ### -ExternalId - +. ```yaml Type: System.String @@ -378,7 +383,7 @@ HelpMessage: '' ### -StartDateTime - +. ```yaml Type: System.DateTime @@ -399,7 +404,7 @@ HelpMessage: '' ### -Subject - +. ```yaml Type: System.String @@ -470,7 +475,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -498,13 +503,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -524,28 +529,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Invoke-MgCreateOrGetCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting) +- [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 6782c9ecc1175..041b5b3ea7883 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgInviteCommunicationCallParticipant --- @@ -19,9 +19,6 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaInviteCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaInviteCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### InviteExpanded (Default) @@ -32,7 +29,6 @@ Invoke-MgInviteCommunicationCallParticipant -CallId [-ResponseHeadersVa [-Participants ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Invite @@ -43,7 +39,6 @@ Invoke-MgInviteCommunicationCallParticipant -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InviteViaIdentityExpanded @@ -54,7 +49,6 @@ Invoke-MgInviteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InviteViaIdentity @@ -65,7 +59,6 @@ Invoke-MgInviteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,9 +75,8 @@ When an active caller is removed, they are immediately dropped from the call wit When an invited participant is removed, any outstanding add participant request is canceled. ## EXAMPLES -### Example 1: Invite one participant to an existing call -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -108,12 +100,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -``` -This example will invite one participant to an existing call - -### Example 2: Invite multiple participants to an existing group call - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -149,12 +136,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -``` -This example will invite multiple participants to an existing group call - -### Example 3: Invite participants to an existing group call, replacing an existing Peer-to-Peer call - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications @@ -178,12 +160,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -``` -This example will invite participants to an existing group call, replacing an existing peer-to-peer call - -### Example 4: Invite one PSTN participant to an existing call - -```powershell +### EXAMPLE 4 Import-Module Microsoft.Graph.CloudCommunications @@ -205,12 +182,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -``` -This example will invite one pstn participant to an existing call - -### Example 5: Move one participant from one meeting to another - -```powershell +### EXAMPLE 5 Import-Module Microsoft.Graph.CloudCommunications @@ -235,10 +207,6 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -``` -This example will move one participant from one meeting to another - - ## PARAMETERS ### -AdditionalProperties @@ -270,7 +238,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -346,7 +314,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -486,7 +454,7 @@ HelpMessage: '' ### -Participants - +. To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ```yaml @@ -653,7 +621,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Participants ]: @@ -677,7 +645,7 @@ Whether to remove them from the main mixer. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -722,27 +690,5 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [Invoke-MgInviteCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant) +- [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index 15d9bedc1cc5d..aa22375be0288 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgKeepCommunicationCallAlive --- @@ -21,9 +21,6 @@ Make sure that these requests are successful to prevent the call from timing out Attempting to send a request to a call that has already ended will result in a 404 Not-Found error. The resources related to the call should be cleaned up on the application side. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaKeepCommunicationCallAlive](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaKeepCommunicationCallAlive?view=graph-powershell-beta) - ## SYNTAX ### Keep (Default) @@ -33,7 +30,6 @@ Invoke-MgKeepCommunicationCallAlive -CallId [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### KeepViaIdentity @@ -43,7 +39,6 @@ Invoke-MgKeepCommunicationCallAlive -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -61,27 +56,14 @@ Make sure that these requests are successful to prevent the call from timing out Attempting to send a request to a call that has already ended will result in a 404 Not-Found error. The resources related to the call should be cleaned up on the application side. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Invoke-MgKeepCommunicationCallAlive -CallId $callId -``` -This example shows how to use the Invoke-MgKeepCommunicationCallAlive Cmdlet. - - ## PARAMETERS ### -Break @@ -391,7 +373,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -415,27 +397,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgKeepCommunicationCallAlive](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive) +- [](https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 21bd58e61ae17..07728d5db38a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality --- @@ -21,9 +21,6 @@ The other media leg is between the CVI bot and the VTC device. The third-party partners own the VTC media leg and the Teams infrastructure cannot access the quality data of the third-party call leg. This method is only for the CVI partners to provide their media quality data. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality?view=graph-powershell-beta) - ## SYNTAX ### LogExpanded (Default) @@ -34,7 +31,6 @@ Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality [-ResponseHeadersVariab [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Log @@ -45,7 +41,6 @@ Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -64,8 +59,9 @@ The third-party partners own the VTC media leg and the Teams infrastructure cann This method is only for the CVI partners to provide their media quality data. ## EXAMPLES -### Example 1: Using the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet -```powershell + +### EXAMPLE 1 + Import-Module Microsoft.Graph.CloudCommunications $params = @{ Quality = @{ @@ -152,9 +148,6 @@ $params = @{ } } Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality -BodyParameter $params -``` -This example shows how to use the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). ## PARAMETERS @@ -181,7 +174,7 @@ HelpMessage: '' ### -Body - +. To construct, see NOTES section for BODY properties and create a hash table. ```yaml @@ -487,7 +480,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: . +BODY : . [(Any) ]: This indicates any property can be added to this object. [Quality ]: teleconferenceDeviceQuality [(Any) ]: This indicates any property can be added to this object. @@ -534,7 +527,7 @@ If the media enabled and disabled multiple times, MediaDuration will the summati [ParticipantId ]: A unique identifier for a specific participant in a conference. The CVI partner needs to copy over Call.MyParticipantId to this property. -QUALITY ``: teleconferenceDeviceQuality +QUALITY : teleconferenceDeviceQuality [(Any) ]: This indicates any property can be added to this object. [CallChainId ]: A unique identifier for all the participant calls in a conference or a unique identifier for two participant calls in P2P call. This needs to be copied over from Microsoft.Graph.Call.CallChainId. @@ -582,27 +575,5 @@ The CVI partner needs to copy over Call.MyParticipantId to this property. ## RELATED LINKS -- [Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality) +- [](https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 00863bcfeb114..2ea829c03cdf5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgMuteCommunicationCall --- @@ -17,9 +17,6 @@ Allows the application to mute itself. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more details about how to handle mute operations, see muteParticipantOperation -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaMuteCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaMuteCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### MuteExpanded (Default) @@ -29,7 +26,6 @@ Invoke-MgMuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Mute @@ -40,7 +36,6 @@ Invoke-MgMuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### MuteViaIdentityExpanded @@ -50,7 +45,7 @@ Invoke-MgMuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### MuteViaIdentity @@ -61,7 +56,6 @@ Invoke-MgMuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +69,9 @@ Allows the application to mute itself. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more details about how to handle mute operations, see muteParticipantOperation -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -96,10 +81,6 @@ $params = @{ Invoke-MgMuteCommunicationCall -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgMuteCommunicationCall Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +112,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +188,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -486,11 +467,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -514,27 +495,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgMuteCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 9abca031632bc..e75d8708e8b69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgMuteCommunicationCallParticipant --- @@ -17,9 +17,6 @@ Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaMuteCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaMuteCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### MuteExpanded (Default) @@ -29,7 +26,7 @@ Invoke-MgMuteCommunicationCallParticipant -CallId -ParticipantId ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Mute @@ -40,7 +37,6 @@ Invoke-MgMuteCommunicationCallParticipant -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### MuteViaIdentityExpanded @@ -50,7 +46,7 @@ Invoke-MgMuteCommunicationCallParticipant -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### MuteViaIdentity @@ -61,7 +57,6 @@ Invoke-MgMuteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -96,10 +82,6 @@ $params = @{ Invoke-MgMuteCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -BodyParameter $params -``` -This example shows how to use the Invoke-MgMuteCommunicationCallParticipant Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +113,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +189,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -513,11 +495,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -541,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgMuteCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant) +- [](https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index b944c67e01c8b..29136cea43312 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgPlayCommunicationCallPrompt --- @@ -16,9 +16,6 @@ title: Invoke-MgPlayCommunicationCallPrompt Play a prompt in the call. For more information about how to handle operations, see commsOperation -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaPlayCommunicationCallPrompt](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaPlayCommunicationCallPrompt?view=graph-powershell-beta) - ## SYNTAX ### PlayExpanded (Default) @@ -28,7 +25,7 @@ Invoke-MgPlayCommunicationCallPrompt -CallId [-ResponseHeadersVariable [-AdditionalProperties ] [-ClientContext ] [-Prompts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Play @@ -39,7 +36,6 @@ Invoke-MgPlayCommunicationCallPrompt -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PlayViaIdentityExpanded @@ -50,7 +46,6 @@ Invoke-MgPlayCommunicationCallPrompt -InputObject [-Prompts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PlayViaIdentity @@ -61,7 +56,6 @@ Invoke-MgPlayCommunicationCallPrompt -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +68,9 @@ This cmdlet has the following aliases, Play a prompt in the call. For more information about how to handle operations, see commsOperation -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -105,10 +90,6 @@ $params = @{ Invoke-MgPlayCommunicationCallPrompt -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgPlayCommunicationCallPrompt Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -140,7 +121,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -216,7 +197,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -356,7 +337,7 @@ HelpMessage: '' ### -Prompts - +. ```yaml Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[] @@ -522,12 +503,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Prompts ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -551,27 +532,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgPlayCommunicationCallPrompt](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt) +- [](https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 9f90fd18d3e39..45af3fb7455ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRecordCommunicationCallResponse --- @@ -13,15 +13,12 @@ title: Invoke-MgRecordCommunicationCallResponse ## SYNOPSIS -Records a short audio response from the caller.\rA bot can utilize this to capture a voice response from a caller after they are prompted for a response. +Records a short audio response from the caller.\r\nA bot can utilize this to capture a voice response from a caller after they are prompted for a response. For further information on how to handle operations, please review commsOperation This action is not intended to record the entire call. The maximum length of recording is 2 minutes. The recording is not saved permanently by the Cloud Communications Platform and is discarded shortly after the call ends. The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value that's given in the completed notification. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaRecordCommunicationCallResponse](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRecordCommunicationCallResponse?view=graph-powershell-beta) - ## SYNTAX ### RecordExpanded (Default) @@ -33,7 +30,7 @@ Invoke-MgRecordCommunicationCallResponse -CallId [-ResponseHeadersVaria [-MaxSilenceTimeoutInSeconds ] [-PlayBeep] [-Prompts ] [-StopTones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Record @@ -44,7 +41,6 @@ Invoke-MgRecordCommunicationCallResponse -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecordViaIdentityExpanded @@ -57,7 +53,6 @@ Invoke-MgRecordCommunicationCallResponse -InputObject ] [-StopTones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecordViaIdentity @@ -68,7 +63,6 @@ Invoke-MgRecordCommunicationCallResponse -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,16 +72,15 @@ This cmdlet has the following aliases, ## DESCRIPTION -Records a short audio response from the caller.\rA bot can utilize this to capture a voice response from a caller after they are prompted for a response. +Records a short audio response from the caller.\r\nA bot can utilize this to capture a voice response from a caller after they are prompted for a response. For further information on how to handle operations, please review commsOperation This action is not intended to record the entire call. The maximum length of recording is 2 minutes. The recording is not saved permanently by the Cloud Communications Platform and is discarded shortly after the call ends. The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value that's given in the completed notification. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -116,10 +109,6 @@ $params = @{ Invoke-MgRecordCommunicationCallResponse -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgRecordCommunicationCallResponse Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -151,7 +140,7 @@ HelpMessage: '' ### -BargeInAllowed - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -178,7 +167,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -254,7 +243,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -366,7 +355,7 @@ HelpMessage: '' ### -InitialSilenceTimeoutInSeconds - +. ```yaml Type: System.Int32 @@ -421,7 +410,7 @@ HelpMessage: '' ### -MaxRecordDurationInSeconds - +. ```yaml Type: System.Int32 @@ -448,7 +437,7 @@ HelpMessage: '' ### -MaxSilenceTimeoutInSeconds - +. ```yaml Type: System.Int32 @@ -475,7 +464,7 @@ HelpMessage: '' ### -PlayBeep - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -502,7 +491,7 @@ HelpMessage: '' ### -Prompts - +. ```yaml Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[] @@ -614,7 +603,7 @@ HelpMessage: '' ### -StopTones - +. ```yaml Type: System.String[] @@ -695,7 +684,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [BargeInAllowed ]: [ClientContext ]: @@ -706,7 +695,7 @@ BODYPARAMETER `]: [StopTones ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -730,27 +719,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgRecordCommunicationCallResponse](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse) +- [](https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index b200e4f038b71..abbd29c337e83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRedirectCommunicationCall --- @@ -18,9 +18,6 @@ The terms 'redirecting' and 'forwarding' a call are used interchangeably. The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaRedirectCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRedirectCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### RedirectExpanded (Default) @@ -32,7 +29,6 @@ Invoke-MgRedirectCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Redirect @@ -43,7 +39,6 @@ Invoke-MgRedirectCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RedirectViaIdentityExpanded @@ -55,7 +50,6 @@ Invoke-MgRedirectCommunicationCall -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RedirectViaIdentity @@ -66,7 +60,6 @@ Invoke-MgRedirectCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,9 +75,8 @@ The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -106,10 +98,6 @@ $params = @{ Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -141,7 +129,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -190,7 +178,7 @@ HelpMessage: '' ### -CallbackUri - +. ```yaml Type: System.String @@ -463,7 +451,7 @@ HelpMessage: '' ### -Targets - +. To construct, see NOTES section for TARGETS properties and create a hash table. ```yaml @@ -491,7 +479,7 @@ HelpMessage: '' ### -Timeout - +. ```yaml Type: System.Int32 @@ -572,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [CallbackUri ]: [Targets ]: @@ -597,7 +585,7 @@ The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. [Timeout ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -642,27 +630,5 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [Invoke-MgRedirectCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 27d19d557d651..68fa1d325d7e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRejectCommunicationCall --- @@ -21,9 +21,6 @@ The current timeout value is 15 seconds. This API does not end existing calls that have already been answered. Use delete call to end a call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaRejectCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRejectCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### RejectExpanded (Default) @@ -34,7 +31,6 @@ Invoke-MgRejectCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Reject @@ -45,7 +41,6 @@ Invoke-MgRejectCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RejectViaIdentityExpanded @@ -56,7 +51,6 @@ Invoke-MgRejectCommunicationCall -InputObject [-Reason ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RejectViaIdentity @@ -67,7 +61,6 @@ Invoke-MgRejectCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -86,9 +79,8 @@ This API does not end existing calls that have already been answered. Use delete call to end a call. ## EXAMPLES -### Example 1: Reject an incoming call with 'Busy' reason -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -98,12 +90,7 @@ $params = @{ Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will reject an incoming call with 'busy' reason - -### Example 2: Reject an incoming call with 'None' reason - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -113,10 +100,6 @@ $params = @{ Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will reject an incoming call with 'none' reason - - ## PARAMETERS ### -AdditionalProperties @@ -148,7 +131,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -197,7 +180,7 @@ HelpMessage: '' ### -CallbackUri - +. ```yaml Type: System.String @@ -551,12 +534,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [CallbackUri ]: [Reason ]: rejectReason -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -580,27 +563,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgRejectCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 2091e58d65aff..41dca4bee1461 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgSubscribeCommunicationCallToTone --- @@ -15,9 +15,6 @@ title: Invoke-MgSubscribeCommunicationCallToTone Subscribe to DTMF (dual-tone multi-frequency signaling) which allows you to be notified when the user presses keys on a 'dialpad'. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaSubscribeCommunicationCallToTone](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaSubscribeCommunicationCallToTone?view=graph-powershell-beta) - ## SYNTAX ### SubscribeExpanded (Default) @@ -27,7 +24,6 @@ Invoke-MgSubscribeCommunicationCallToTone -CallId [-ResponseHeadersVari [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Subscribe @@ -38,7 +34,6 @@ Invoke-MgSubscribeCommunicationCallToTone -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SubscribeViaIdentityExpanded @@ -48,7 +43,7 @@ Invoke-MgSubscribeCommunicationCallToTone -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SubscribeViaIdentity @@ -59,7 +54,6 @@ Invoke-MgSubscribeCommunicationCallToTone -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,9 +66,8 @@ This cmdlet has the following aliases, Subscribe to DTMF (dual-tone multi-frequency signaling) which allows you to be notified when the user presses keys on a 'dialpad'. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -84,10 +77,6 @@ $params = @{ Invoke-MgSubscribeCommunicationCallToTone -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgSubscribeCommunicationCallToTone Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -119,7 +108,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -195,7 +184,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -474,11 +463,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -502,27 +491,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgSubscribeCommunicationCallToTone](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone) +- [](https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 57508e7867e26..50f0cc310af6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgUnmuteCommunicationCall --- @@ -17,9 +17,6 @@ Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaUnmuteCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaUnmuteCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### UnmuteExpanded (Default) @@ -29,7 +26,6 @@ Invoke-MgUnmuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Unmute @@ -40,7 +36,6 @@ Invoke-MgUnmuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnmuteViaIdentityExpanded @@ -50,7 +45,7 @@ Invoke-MgUnmuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UnmuteViaIdentity @@ -61,7 +56,6 @@ Invoke-MgUnmuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +69,9 @@ Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -96,10 +81,6 @@ $params = @{ Invoke-MgUnmuteCommunicationCall -CallId $callId -BodyParameter $params -``` -This example shows how to use the Invoke-MgUnmuteCommunicationCall Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +112,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +188,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -486,11 +467,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -514,27 +495,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgUnmuteCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md index c44c4fe390cd9..75e4c496cebdb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.CloudCommunications -Module Guid: 012a59be-7ca3-48ae-9a18-af8295c52773 +Module Guid: 1461b613-afd8-4ced-9526-a15da0920c52 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -571,22 +571,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserPresence](Update-MgUserPresence.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index becb16eac486e..7de9a15dd1ca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Move-MgCommunicationCall --- @@ -17,9 +17,6 @@ Transfer an active peer-to-peer call or group call. A consultative transfer means that the transferor can inform the person they want to transfer the call to (the transferee), before the transfer is made. This is opposed to transfering the call directly. -> [!NOTE] -> To view the beta release of this cmdlet, view [Move-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Move-MgBetaCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### TransferExpanded (Default) @@ -30,7 +27,6 @@ Move-MgCommunicationCall -CallId [-ResponseHeadersVariable ] [-Transferee ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Transfer @@ -41,7 +37,6 @@ Move-MgCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TransferViaIdentityExpanded @@ -53,7 +48,6 @@ Move-MgCommunicationCall -InputObject [-Transferee ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TransferViaIdentity @@ -64,7 +58,6 @@ Move-MgCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,9 +72,8 @@ A consultative transfer means that the transferor can inform the person they wan This is opposed to transfering the call directly. ## EXAMPLES -### Example 1: Call transfer from a peer-to-peer call -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -99,12 +91,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will call transfer from a peer-to-peer call - -### Example 2: Consultative transfer from a peer-to-peer call - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -126,12 +113,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will consultative transfer from a peer-to-peer call - -### Example 3: Call transfer from a peer-to-peer call to PSTN number - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications @@ -152,12 +134,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will call transfer from a peer-to-peer call to pstn number - -### Example 4: Consultative transfer from a peer-to-peer call to PSTN number - -```powershell +### EXAMPLE 4 Import-Module Microsoft.Graph.CloudCommunications @@ -181,12 +158,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will consultative transfer from a peer-to-peer call to pstn number - -### Example 5: Call transfer from a group call - -```powershell +### EXAMPLE 5 Import-Module Microsoft.Graph.CloudCommunications @@ -213,10 +185,6 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -``` -This example will call transfer from a group call - - ## PARAMETERS ### -AdditionalProperties @@ -248,7 +216,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -653,7 +621,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [TransferTarget ]: invitationParticipantInfo [(Any) ]: This indicates any property can be added to this object. @@ -691,7 +659,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -712,7 +680,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -TRANSFEREE ``: participantInfo +TRANSFEREE : participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -736,7 +704,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -TRANSFERTARGET ``: invitationParticipantInfo +TRANSFERTARGET : invitationParticipantInfo [(Any) ]: This indicates any property can be added to this object. [Hidden ]: Optional. Whether to hide the participant from the roster. @@ -761,27 +729,5 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [Move-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index de02b3cb88028..20144fed7365a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCall --- @@ -15,9 +15,6 @@ title: New-MgCommunicationAdhocCall Create new navigation property to adhocCalls for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgCommunicationAdhocCall [-ResponseHeadersVariable ] [-AdditionalPro [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgCommunicationAdhocCall -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Create new navigation property to adhocCalls for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -406,7 +411,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: adhocCall +BODYPARAMETER : adhocCall [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -539,27 +544,4 @@ Read-only. ## RELATED LINKS -- [New-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index 1065de9e27905..57bdb4723120f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCallRecording --- @@ -15,9 +15,6 @@ title: New-MgCommunicationAdhocCallRecording Create new navigation property to recordings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgCommunicationAdhocCallRecording -AdhocCallId [-ResponseHeadersVar [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgCommunicationAdhocCallRecording -AdhocCallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +49,7 @@ New-MgCommunicationAdhocCallRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +59,7 @@ New-MgCommunicationAdhocCallRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +71,16 @@ This cmdlet has the following aliases, Create new navigation property to recordings for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -690,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -723,7 +729,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -744,7 +750,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -758,27 +764,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 468db2d450c59..3ee079e77a890 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCallTranscript --- @@ -15,9 +15,6 @@ title: New-MgCommunicationAdhocCallTranscript Create new navigation property to transcripts for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgCommunicationAdhocCallTranscript -AdhocCallId [-ResponseHeadersVa [-MetadataContentInputFile ] [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgCommunicationAdhocCallTranscript -AdhocCallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +51,6 @@ New-MgCommunicationAdhocCallTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -64,7 +60,7 @@ New-MgCommunicationAdhocCallTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -719,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -754,7 +760,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -775,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -789,27 +795,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index b2ea687905baf..af451b9c2d8fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCall --- @@ -17,9 +17,6 @@ Create call enables your bot to create a new outgoing peer-to-peer or group call You need to register the calling bot and go through the list of permissions needed. This API supports the following PSTN scenarios: -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -40,7 +37,6 @@ New-MgCommunicationCall [-ResponseHeadersVariable ] [-AdditionalProperti [-Transcription ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -49,7 +45,7 @@ New-MgCommunicationCall [-ResponseHeadersVariable ] [-AdditionalProperti New-MgCommunicationCall -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -63,18 +59,9 @@ Create call enables your bot to create a new outgoing peer-to-peer or group call You need to register the calling bot and go through the list of permissions needed. This API supports the following PSTN scenarios: -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCalls.Chat, Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | - ## EXAMPLES -### Example 1: Create peer-to-peer VoIP call with service hosted media -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -108,12 +95,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create peer-to-peer voip call with service hosted media - -### Example 2: Create peer-to-peer VoIP call with application hosted media - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -157,12 +139,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create peer-to-peer voip call with application hosted media - -### Example 3: Create a group call with service hosted media - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications @@ -217,12 +194,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create a group call with service hosted media - -### Example 4: Create a group call with application hosted media - -```powershell +### EXAMPLE 4 Import-Module Microsoft.Graph.CloudCommunications @@ -277,12 +249,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create a group call with application hosted media - -### Example 5: Join scheduled meeting with service hosted media - -```powershell +### EXAMPLE 5 Import-Module Microsoft.Graph.CloudCommunications @@ -320,12 +287,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will join scheduled meeting with service hosted media - -### Example 6: Join scheduled meeting with application hosted media - -```powershell +### EXAMPLE 6 Import-Module Microsoft.Graph.CloudCommunications @@ -362,12 +324,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will join scheduled meeting with application hosted media - -### Example 7: Join a scheduled meeting with joinMeetingId and passcode - -```powershell +### EXAMPLE 7 Import-Module Microsoft.Graph.CloudCommunications @@ -392,12 +349,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will join a scheduled meeting with joinmeetingid and passcode - -### Example 8: Join a scheduled meeting with joinMeetingId - -```powershell +### EXAMPLE 8 Import-Module Microsoft.Graph.CloudCommunications @@ -422,12 +374,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will join a scheduled meeting with joinmeetingid - -### Example 9: Create peer-to-peer PSTN call with service hosted media - -```powershell +### EXAMPLE 9 Import-Module Microsoft.Graph.CloudCommunications @@ -472,12 +419,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create peer-to-peer pstn call with service hosted media - -### Example 100: Create peer-to-peer PSTN call with application hosted media - -```powershell +### EXAMPLE 10 Import-Module Microsoft.Graph.CloudCommunications @@ -523,10 +465,6 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -``` -This example will create peer-to-peer pstn call with application hosted media - - ## PARAMETERS ### -AdditionalProperties @@ -552,7 +490,7 @@ HelpMessage: '' ### -AudioRoutingGroups - +. To construct, see NOTES section for AUDIOROUTINGGROUPS properties and create a hash table. ```yaml @@ -750,7 +688,7 @@ HelpMessage: '' ### -ContentSharingSessions - +. To construct, see NOTES section for CONTENTSHARINGSESSIONS properties and create a hash table. ```yaml @@ -964,7 +902,7 @@ HelpMessage: '' ### -MyParticipantId - +. ```yaml Type: System.String @@ -985,7 +923,7 @@ HelpMessage: '' ### -Operations - +. To construct, see NOTES section for OPERATIONS properties and create a hash table. ```yaml @@ -1007,7 +945,7 @@ HelpMessage: '' ### -Participants - +. To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ```yaml @@ -1245,7 +1183,7 @@ HelpMessage: '' ### -TenantId - +. ```yaml Type: System.String @@ -1367,7 +1305,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -BODYPARAMETER ``: call +BODYPARAMETER : call [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1503,7 +1441,7 @@ For peer-to-peer case, the call will be dropped once the participant is added su [LastModifiedDateTime ]: The state modified time in UTC. [State ]: callTranscriptionState -CALLOPTIONS ``: callOptions +CALLOPTIONS : callOptions [(Any) ]: This indicates any property can be added to this object. [HideBotAfterEscalation ]: Indicates whether to hide the app after the call is escalated. [IsContentSharingNotificationEnabled ]: Indicates whether content sharing notifications should be enabled for the call. @@ -1525,7 +1463,7 @@ For example, in the access reviews decisions API, this property might record the [Original ]: identitySet [RoutingType ]: routingType -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. @@ -1535,7 +1473,7 @@ CONTENTSHARINGSESSIONS : . [Id ]: The unique identifier for an entity. Read-only. -INCOMINGCONTEXT ``: incomingContext +INCOMINGCONTEXT : incomingContext [(Any) ]: This indicates any property can be added to this object. [ObservedParticipantId ]: The ID of the participant that is under observation. Read-only. @@ -1553,7 +1491,7 @@ For example, in the access reviews decisions API, this property might record the Read-only. [Transferor ]: identitySet -MEDIASTATE ``: callMediaState +MEDIASTATE : callMediaState [(Any) ]: This indicates any property can be added to this object. [Audio ]: mediaState @@ -1617,13 +1555,13 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -RESULTINFO ``: resultInfo +RESULTINFO : resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. [Subcode ]: The result subcode. -SOURCE ``: participantInfo +SOURCE : participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -1669,12 +1607,12 @@ Whether to remove them from the main mixer. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. -TONEINFO ``: toneInfo +TONEINFO : toneInfo [(Any) ]: This indicates any property can be added to this object. [SequenceId ]: An incremental identifier used for ordering DTMF events. [Tone ]: tone -TRANSCRIPTION ``: callTranscriptionInfo +TRANSCRIPTION : callTranscriptionInfo [(Any) ]: This indicates any property can be added to this object. [LastModifiedDateTime ]: The state modified time in UTC. [State ]: callTranscriptionState @@ -1682,27 +1620,5 @@ TRANSCRIPTION ``: callTranscriptionInfo ## RELATED LINKS -- [New-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall) +- [](https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 692afd743f116..d47174281dfed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallAudioRoutingGroup --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallAudioRoutingGroup Create a new audioRoutingGroup. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgCommunicationCallAudioRoutingGroup -CallId [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Receivers ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,7 @@ New-MgCommunicationCallAudioRoutingGroup -CallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +45,7 @@ New-MgCommunicationCallAudioRoutingGroup -InputObject ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +55,7 @@ New-MgCommunicationCallAudioRoutingGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,18 +67,9 @@ This cmdlet has the following aliases, Create a new audioRoutingGroup. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -98,10 +86,6 @@ receivers = @( New-MgCommunicationCallAudioRoutingGroup -CallId $callId -BodyParameter $params -``` -This example shows how to use the New-MgCommunicationCallAudioRoutingGroup Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: audioRoutingGroup +BODYPARAMETER : audioRoutingGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -578,7 +562,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -602,27 +586,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup) +- [](https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index 83c945df0ccf7..2f90ba84c54b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallContentSharingSession --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallContentSharingSession Create new navigation property to contentSharingSessions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,6 @@ New-MgCommunicationCallContentSharingSession -CallId [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +33,6 @@ New-MgCommunicationCallContentSharingSession -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +42,7 @@ New-MgCommunicationCallContentSharingSession -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +52,6 @@ New-MgCommunicationCallContentSharingSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +63,16 @@ This cmdlet has the following aliases, Create new navigation property to contentSharingSessions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -455,7 +459,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -479,27 +483,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index 5553eb7f28acd..6f4ed17727a5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallOperation --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallOperation Create new navigation property to operations for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallOperation?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgCommunicationCallOperation -CallId [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgCommunicationCallOperation -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,7 @@ New-MgCommunicationCallOperation -InputObject [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +54,7 @@ New-MgCommunicationCallOperation -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to operations for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: commsOperation +BODYPARAMETER : commsOperation [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -554,7 +559,7 @@ Max limit is 256 chars. [Subcode ]: The result subcode. [Status ]: operationStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -575,7 +580,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -RESULTINFO ``: resultInfo +RESULTINFO : resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. @@ -584,27 +589,4 @@ RESULTINFO ``: resultInfo ## RELATED LINKS -- [New-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index 28a50daddda70..c3106762251a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallParticipant --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallParticipant Create new navigation property to participants for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgCommunicationCallParticipant -CallId [-ResponseHeadersVariable ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgCommunicationCallParticipant -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgCommunicationCallParticipant -InputObject [-RestrictedExperience ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -64,7 +60,7 @@ New-MgCommunicationCallParticipant -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to participants for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -711,7 +717,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: participant +BODYPARAMETER : participant [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -760,7 +766,7 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -INFO ``: participantInfo +INFO : participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -784,7 +790,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -812,7 +818,7 @@ MEDIASTREAMS : The list of media streams. [ServerMuted ]: If the media is muted by the server. [SourceId ]: The source ID. -RECORDINGINFO ``: recordingInfo +RECORDINGINFO : recordingInfo [(Any) ]: This indicates any property can be added to this object. [Initiator ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -826,11 +832,11 @@ For example, in the access reviews decisions API, this property might record the [User ]: identity [RecordingStatus ]: recordingStatus -REMOVEDSTATE ``: removedState +REMOVEDSTATE : removedState [(Any) ]: This indicates any property can be added to this object. [Reason ]: The removal reason for the participant resource. -RESTRICTEDEXPERIENCE ``: onlineMeetingRestricted +RESTRICTEDEXPERIENCE : onlineMeetingRestricted [(Any) ]: This indicates any property can be added to this object. [ContentSharingDisabled ]: onlineMeetingContentSharingDisabledReason [VideoDisabled ]: onlineMeetingVideoDisabledReason @@ -838,27 +844,4 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe ## RELATED LINKS -- [New-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index 1846f8cb5f7dd..26be3707271f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallRecordParticipantV2 --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallRecordParticipantV2 Create new navigation property to participants_v2 for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgCommunicationCallRecordParticipantV2 -CallRecordId [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgCommunicationCallRecordParticipantV2 -CallRecordId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +46,6 @@ New-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +55,6 @@ New-MgCommunicationCallRecordParticipantV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to participants_v2 for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -518,7 +521,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY ``: communicationsIdentitySet +IDENTITY : communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -537,7 +540,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -561,27 +564,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index 609791b4fb6f7..9d61c83859396 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallRecordSession --- @@ -15,9 +15,6 @@ title: New-MgCommunicationCallRecordSession Create new navigation property to sessions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgCommunicationCallRecordSession -CallRecordId [-ResponseHeadersVar [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,7 @@ New-MgCommunicationCallRecordSession -CallRecordId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +51,6 @@ New-MgCommunicationCallRecordSession -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +60,7 @@ New-MgCommunicationCallRecordSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to sessions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -691,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: session +BODYPARAMETER : session [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -839,26 +844,26 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z The DateTimeOffset 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 -CALLEE ``: endpoint +CALLEE : endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -CALLER ``: endpoint +CALLER : endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -FAILUREINFO ``: failureInfo +FAILUREINFO : failureInfo [(Any) ]: This indicates any property can be added to this object. [Reason ]: Classification of why a call or portion of a call failed. [Stage ]: failureStage -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1014,27 +1019,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS -- [New-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index 06d8813603d95..1f7fe26cffd1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeeting --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeeting Create new navigation property to onlineMeetings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -47,7 +44,6 @@ New-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -57,7 +53,6 @@ New-MgCommunicationOnlineMeeting -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +64,16 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetings for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1374,7 +1379,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING ``: audioConferencing +AUDIOCONFERENCING : audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1383,7 +1388,7 @@ AUDIOCONFERENCING ``: audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER ``: Represents a Microsoft online meeting. +BODYPARAMETER : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1591,7 +1596,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS ``: broadcastMeetingSettings +BROADCASTSETTINGS : broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -1608,23 +1613,23 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS ``: chatRestrictions +CHATRESTRICTIONS : chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -JOININFORMATION ``: itemBody +JOININFORMATION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings +JOINMEETINGIDSETTINGS : joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -1635,13 +1640,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS ``: lobbyBypassSettings +LOBBYBYPASSSETTINGS : lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -1691,7 +1696,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -1730,7 +1735,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION ``: watermarkProtectionValues +WATERMARKPROTECTION : watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -1738,27 +1743,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [New-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index edc7af52420e3..2b18f86dd34bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingAttendanceReport Create new navigation property to attendanceReports for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -632,7 +639,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER ``: meetingAttendanceReport +BODYPARAMETER : meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -688,7 +695,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -712,27 +719,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index f82b6e9130c95..3095e4013f590 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +52,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +62,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -80,6 +73,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -692,7 +695,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER ``: attendanceRecord +BODYPARAMETER : attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -719,7 +722,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -727,14 +730,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY ``: identity +IDENTITY : 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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -758,27 +761,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index d2b0fed30d555..1a8064fda68d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversation --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversation Create new navigation property to onlineMeetingConversations for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,7 @@ New-MgCommunicationOnlineMeetingConversation [-ResponseHeadersVariable ] [-Starter ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +40,6 @@ New-MgCommunicationOnlineMeetingConversation [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,6 +51,16 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetingConversations for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -538,7 +544,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A conversation for Teams QA online meeting. +BODYPARAMETER : A conversation for Teams QA online meeting. [(Any) ]: This indicates any property can be added to this object. [CreationMode ]: Indicates that the resource is in migration state and is currently being used for migration purposes. [Messages ]: The messages in a Viva Engage conversation. @@ -822,7 +828,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -ONLINEMEETING ``: Represents a Microsoft online meeting. +ONLINEMEETING : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1030,7 +1036,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -ORGANIZER ``: The Viva Engage identities. +ORGANIZER : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1043,7 +1049,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -STARTER ``: A Viva Engage conversation message. +STARTER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1084,27 +1090,4 @@ Read-only. ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index a8119bd74205f..5012ce8f2a16f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessage --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationMessage Create new navigation property to messages for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +39,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +54,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +64,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +76,16 @@ This cmdlet has the following aliases, Create new navigation property to messages for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -688,12 +695,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -731,7 +738,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -768,7 +775,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -781,7 +788,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -856,7 +863,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -897,27 +904,4 @@ Read-only. ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 5346beb7b3de1..46a6ea8c6fd9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReaction Create new navigation property to reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +50,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -548,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -566,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -587,7 +590,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,27 +606,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index 03dd94b3f4d20..86699ee9320a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReply Create new navigation property to replies for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +41,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +56,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +66,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,6 +78,16 @@ This cmdlet has the following aliases, Create new navigation property to replies for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -717,12 +724,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -760,7 +767,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -797,7 +804,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -810,7 +817,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -885,7 +892,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -926,27 +933,4 @@ Read-only. ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index aaaca6f8c3c43..8eadfed38c78c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReplyReaction Create new navigation property to reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -44,7 +40,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +52,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -69,7 +63,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +74,16 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -577,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -595,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -616,7 +619,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -632,27 +635,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index 39e1b0b1fd1fe..8207134f5b9d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReaction Create new navigation property to reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +50,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -521,7 +524,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -539,7 +542,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -560,7 +563,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -576,27 +579,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index eaddbc4dfc2a5..70630155dc376 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReply Create new navigation property to replies for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +41,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +56,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +66,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,6 +78,16 @@ This cmdlet has the following aliases, Create new navigation property to replies for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -690,12 +697,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -733,7 +740,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -770,7 +777,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -783,7 +790,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -858,7 +865,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -899,27 +906,4 @@ Read-only. ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 7129c92befe0c..d1c87d5bcd99d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReplyReaction Create new navigation property to reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +50,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -548,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -566,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -587,7 +590,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,27 +606,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index c9949e6588380..21c99154c9ae5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingRecording Create new navigation property to recordings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgCommunicationOnlineMeetingRecording -OnlineMeetingId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgCommunicationOnlineMeetingRecording -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgCommunicationOnlineMeetingRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgCommunicationOnlineMeetingRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to recordings for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -690,7 +697,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -723,7 +730,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -744,7 +751,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -758,27 +765,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index 1fa061e21edb2..575ef5deb8306 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: New-MgCommunicationOnlineMeetingTranscript Create new navigation property to transcripts for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,7 @@ New-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +51,6 @@ New-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +60,7 @@ New-MgCommunicationOnlineMeetingTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -720,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -755,7 +760,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -776,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -790,27 +795,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index 509bacc1ba240..ffa76c6192143 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationPresence --- @@ -15,9 +15,6 @@ title: New-MgCommunicationPresence Create new navigation property to presences for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgCommunicationPresence [-ResponseHeadersVariable ] [-Activity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgCommunicationPresence -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Create new navigation property to presences for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Activity @@ -472,7 +477,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: presence +BODYPARAMETER : presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -502,12 +507,12 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -OUTOFOFFICESETTINGS ``: outOfOfficeSettings +OUTOFOFFICESETTINGS : outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE ``: presenceStatusMessage +STATUSMESSAGE : presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -520,7 +525,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION ``: userWorkLocation +WORKLOCATION : userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -529,27 +534,4 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [New-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index b7544045cd6c7..8526b2970f72c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeeting --- @@ -15,9 +15,6 @@ title: New-MgUserOnlineMeeting Create new navigation property to onlineMeetings for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -47,7 +44,6 @@ New-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -57,7 +53,6 @@ New-MgUserOnlineMeeting -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -88,7 +83,6 @@ New-MgUserOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -98,7 +92,7 @@ New-MgUserOnlineMeeting -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -110,18 +104,9 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetings for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.ReadWrite.All, | - ## EXAMPLES -### Example 1: Create an online meeting with user token -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -134,12 +119,7 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params -``` -This example will create an online meeting with user token - -### Example 2: Create an online meeting that requires a passcode - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -155,12 +135,7 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params -``` -This example will create an online meeting that requires a passcode - -### Example 3: Create an online meeting that doesn't require a passcode - -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.CloudCommunications @@ -176,10 +151,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params -``` -This example will create an online meeting that doesn't require a passcode - - ## PARAMETERS ### -AdditionalProperties @@ -1826,7 +1797,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING ``: audioConferencing +AUDIOCONFERENCING : audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1835,7 +1806,7 @@ AUDIOCONFERENCING ``: audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER ``: Represents a Microsoft online meeting. +BODYPARAMETER : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -2043,7 +2014,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS ``: broadcastMeetingSettings +BROADCASTSETTINGS : broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -2060,18 +2031,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS ``: chatRestrictions +CHATRESTRICTIONS : chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2092,12 +2063,12 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION ``: itemBody +JOININFORMATION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings +JOINMEETINGIDSETTINGS : joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2108,13 +2079,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS ``: lobbyBypassSettings +LOBBYBYPASSSETTINGS : lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2164,7 +2135,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2203,7 +2174,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION ``: watermarkProtectionValues +WATERMARKPROTECTION : watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2211,26 +2182,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [New-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index f9fbb12a1c465..2f04fe7d64e75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: New-MgUserOnlineMeetingAttendanceReport Create new navigation property to attendanceReports for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgUserOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgUserOnlineMeetingAttendanceReport -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -659,7 +666,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER ``: meetingAttendanceReport +BODYPARAMETER : meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -715,7 +722,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -739,27 +746,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index a487ffa7dcee1..8b85b68df855f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: New-MgUserOnlineMeetingAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +52,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,7 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +73,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -718,7 +722,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER ``: attendanceRecord +BODYPARAMETER : attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -745,7 +749,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -753,14 +757,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY ``: identity +IDENTITY : 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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -784,27 +788,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index 2534fb3148363..90fb69282565c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: New-MgUserOnlineMeetingRecording Create new navigation property to recordings for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgUserOnlineMeetingRecording -InputObject [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgUserOnlineMeetingRecording -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to recordings for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -717,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -771,7 +778,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -785,27 +792,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index ebd73465a8869..283e4e80c4a00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: New-MgUserOnlineMeetingTranscript Create new navigation property to transcripts for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,7 @@ New-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +51,6 @@ New-MgUserOnlineMeetingTranscript -InputObject [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +60,7 @@ New-MgUserOnlineMeetingTranscript -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -747,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -782,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -803,7 +808,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -817,27 +822,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index 0bb4a43acd072..e54bbcbc34bf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCall --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationAdhocCall Delete navigation property adhocCalls for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationAdhocCall -AdhocCallId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationAdhocCall -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 adhocCalls for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index 6e56d37129295..6d582fa958b5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallRecording --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationAdhocCallRecording Delete navigation property recordings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationAdhocCallRecording -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property recordings for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index 7731efaddf770..16e799cd45954 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallRecordingContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecor [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationAdhocCallRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +431,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index 902868f81f447..e5244b1bfc2ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscript --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationAdhocCallTranscript Delete navigation property transcripts for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationAdhocCallTranscript -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property transcripts for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index 636e6a969dda2..c0e52ed5a159b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscriptContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTran [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationAdhocCallTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +431,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index e8e2f7fa1f953..b36449b97e114 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -403,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -427,27 +432,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index bbb5c052a9f35..79e4679c0b3fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCall --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationCall Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCall?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationCall -CallId [-IfMatch ] [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationCall -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCall -CallId $callId -``` -This example shows how to use the Remove-MgCommunicationCall Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +408,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall) +- [](https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index 578c090e86a5e..a6f0bb98f0860 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallAudioRoutingGroup --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallAudioRoutingGroup Delete the specified audioRoutingGroup. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallAudioRoutingGroup -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete the specified audioRoutingGroup. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId -``` -This example shows how to use the Remove-MgCommunicationCallAudioRoutingGroup Cmdlet. - - ## PARAMETERS ### -AudioRoutingGroupId @@ -421,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -445,27 +427,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup) +- [](https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index 4277c1ae97f0f..d9266a733edec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallContentSharingSession --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallContentSharingSession Delete navigation property contentSharingSessions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallContentSharingSession -CallId -ContentSharing [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallContentSharingSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property contentSharingSessions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index 9194ca84e38f5..a022e7b5ffec3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallOperation --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallOperation Delete navigation property operations for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallOperation?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallOperation -CallId -CommsOperationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallOperation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property operations for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index 4dd7cb21a0a20..094592fd565c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallParticipant --- @@ -19,9 +19,6 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -31,7 +28,6 @@ Remove-MgCommunicationCallParticipant -CallId -ParticipantId [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -41,7 +37,6 @@ Remove-MgCommunicationCallParticipant -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,38 +52,20 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -``` -This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. - -### Example 3: Code snippet - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -``` -This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. - - ## PARAMETERS ### -Break @@ -440,7 +417,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -464,27 +441,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant) +- [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index c82eadd7358f1..05dab764e91a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordOrganizerV2 --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallRecordOrganizerV2 Delete navigation property organizer_v2 for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property organizer_v2 for communications +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index 975c6b0fc9f81..cbaa667511baa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordParticipantV2 --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallRecordParticipantV2 Delete navigation property participants_v2 for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallRecordParticipantV2 -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property participants_v2 for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index 24d03fc656976..67fcf5d8b344f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordSession --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationCallRecordSession Delete navigation property sessions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationCallRecordSession -CallRecordId -SessionId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationCallRecordSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property sessions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index d3f4e15c5694f..41bd1360ae74f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeeting --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeeting Delete navigation property onlineMeetings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationOnlineMeeting -OnlineMeetingId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationOnlineMeeting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetings for communications +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index 539dd84605d00..8139d069c3f8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingAttendanceReport Delete navigation property attendanceReports for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -425,27 +430,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index fb42af228de72..94f616ad320b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttendanceRecordId @@ -423,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -447,27 +452,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index 2387c08a203e0..22d27d0704336 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationOnlineMeetingAttendeeReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -405,27 +410,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index da570f5826194..9ed76b6ce4737 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversation --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversation Delete navigation property onlineMeetingConversations for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationOnlineMeetingConversation -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetingConversations for communications +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index 5e44c82e6c709..2dc79342ba4a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessage --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessage Delete navigation property messages for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property messages for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -425,27 +430,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index 963a95afa4463..df4de6cf64103 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReaction Delete navigation property reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index c04de14354eba..a871d5b215ee1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReply Delete navigation property replies for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReply [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReply [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Delete navigation property replies for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 757f1b42e6eb9..d0a8ac098ae85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction Delete navigation property reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -445,7 +450,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -469,27 +474,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 59688d6e07463..cd4d7d95318cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeRepor The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -383,7 +388,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -407,27 +412,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index 913bf22d9f7cb..daa8ea53a9cd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarter --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarter Delete navigation property starter for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property starter for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -380,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -404,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index ae82fb4399096..88ef8afe498c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReaction Delete navigation property reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReaction [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +431,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index 31da43df8aeb7..23bcd1d39df2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReply Delete navigation property replies for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReply [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReply [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property replies for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +431,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index ead4227be0cc2..1918d44aa936f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction Delete navigation property reactions for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index 4d64b1677f43d..4f9132a1f2f94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingRecording Delete navigation property recordings for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationOnlineMeetingRecording -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property recordings for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index ef6c043319037..5617b86b573e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -403,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -427,27 +432,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index 31103b2892b13..e2c52ff74bf2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationOnlineMeetingTranscript Delete navigation property transcripts for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationOnlineMeetingTranscript -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property transcripts for communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -400,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index afe0f74ae59e4..c34295605380c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscriptContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -403,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -427,27 +432,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index b9cdcad2730c1..58b4dd28c6074 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -404,7 +409,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -428,27 +433,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index ead9faf8a5ecc..3f48a5c5d487c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationPresence --- @@ -15,9 +15,6 @@ title: Remove-MgCommunicationPresence Delete navigation property presences for communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgCommunicationPresence -PresenceId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgCommunicationPresence -InputObject [-IfM [-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 presences for communications +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index 3c149f45a59b4..21528cc86cf36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeeting --- @@ -15,9 +15,6 @@ title: Remove-MgUserOnlineMeeting Delete navigation property onlineMeetings for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserOnlineMeeting -OnlineMeetingId -UserId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserOnlineMeeting -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,28 +44,15 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetings for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -``` -This example shows how to use the Remove-MgUserOnlineMeeting Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -446,26 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index 3c818b130c6a8..14c54eab521c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: Remove-MgUserOnlineMeetingAttendanceReport Delete navigation property attendanceReports for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgUserOnlineMeetingAttendanceReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -422,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index cb212acbf9590..c4714e0ef4b1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttendanceRecordId @@ -444,7 +449,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -468,27 +473,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index 4b882f775265e..428914c905375 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Remove-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgUserOnlineMeetingAttendeeReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -426,27 +431,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index 715ee5963e737..6af48481e69f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: Remove-MgUserOnlineMeetingRecording Delete navigation property recordings for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgUserOnlineMeetingRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property recordings for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -422,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index a99a6697e1d42..a5a3f4f44ab90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Remove-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeet [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgUserOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index 24fca8502a298..3a67f5b0f71a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: Remove-MgUserOnlineMeetingTranscript Delete navigation property transcripts for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgUserOnlineMeetingTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property transcripts for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -422,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index f15fbfd720f64..90ee9d771b056 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscriptContent --- @@ -16,9 +16,6 @@ title: Remove-MgUserOnlineMeetingTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMe [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgUserOnlineMeetingTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index 3b8c5e9cca68f..b6dd1db5b69b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Remove-MgUserOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgUserOnlineMeetingTranscriptMetadataContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -424,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -448,27 +453,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index 55a6b264d996d..2457d29c70d3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserPresence --- @@ -15,9 +15,6 @@ title: Remove-MgUserPresence Delete navigation property presence for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserPresence?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserPresence -UserId [-IfMatch ] [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserPresence -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property presence for users +## 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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 945e58e893d91..0d7467b1779bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Rename-MgCommunicationCallScreenSharingRole --- @@ -15,9 +15,6 @@ title: Rename-MgCommunicationCallScreenSharingRole Allow applications to share screen content with the participants of a group call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Rename-MgBetaCommunicationCallScreenSharingRole](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Rename-MgBetaCommunicationCallScreenSharingRole?view=graph-powershell-beta) - ## SYNTAX ### ChangeExpanded (Default) @@ -27,7 +24,6 @@ Rename-MgCommunicationCallScreenSharingRole -CallId [-ResponseHeadersVa [-AdditionalProperties ] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Change @@ -38,7 +34,6 @@ Rename-MgCommunicationCallScreenSharingRole -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ChangeViaIdentityExpanded @@ -49,7 +44,6 @@ Rename-MgCommunicationCallScreenSharingRole -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ChangeViaIdentity @@ -60,7 +54,6 @@ Rename-MgCommunicationCallScreenSharingRole -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,9 +66,8 @@ This cmdlet has the following aliases, Allow applications to share screen content with the participants of a group call. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -85,10 +77,6 @@ $params = @{ Rename-MgCommunicationCallScreenSharingRole -CallId $callId -BodyParameter $params -``` -This example shows how to use the Rename-MgCommunicationCallScreenSharingRole Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -120,7 +108,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -496,11 +484,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Role ]: screenSharingRole -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -524,27 +512,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Rename-MgCommunicationCallScreenSharingRole](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole) +- [](https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index a5350f5c935bd..9ff96ae2a0d59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationCallDtmfTone --- @@ -15,9 +15,6 @@ title: Send-MgCommunicationCallDtmfTone Invoke action sendDtmfTones -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationCallDtmfTone](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationCallDtmfTone?view=graph-powershell-beta) - ## SYNTAX ### SendExpanded (Default) @@ -27,7 +24,7 @@ Send-MgCommunicationCallDtmfTone -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-DelayBetweenTonesMS ] [-Tones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Send @@ -38,7 +35,6 @@ Send-MgCommunicationCallDtmfTone -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -49,7 +45,6 @@ Send-MgCommunicationCallDtmfTone -InputObject [-DelayBetweenTonesMS ] [-Tones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -60,7 +55,6 @@ Send-MgCommunicationCallDtmfTone -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,6 +66,16 @@ This cmdlet has the following aliases, Invoke action sendDtmfTones +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -103,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -179,7 +183,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -228,7 +232,7 @@ HelpMessage: '' ### -DelayBetweenTonesMS - +. ```yaml Type: System.Int32 @@ -431,7 +435,7 @@ HelpMessage: '' ### -Tones - +. ```yaml Type: System.String[] @@ -512,13 +516,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [DelayBetweenTonesMS ]: [Tones ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -542,27 +546,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgCommunicationCallDtmfTone](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 49b2b95268912..1f2e2c88025c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm --- @@ -16,9 +16,6 @@ title: Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm?view=graph-powershell-beta) - ## SYNTAX ### SendExpanded (Default) @@ -30,7 +27,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId < [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -41,7 +37,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -53,7 +48,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm [-RemindBeforeTimeInMinutesType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +59,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,6 +71,16 @@ This cmdlet has the following aliases, Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -109,7 +112,7 @@ HelpMessage: '' ### -Attendees - +. To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -137,7 +140,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -520,7 +523,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -530,7 +533,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [RemindBeforeTimeInMinutesType ]: remindBeforeTimeInMinutesType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -554,28 +557,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm) +- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 6a87029c54b8b..628865c5e245c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationOnlineMeetingVirtualAppointmentSm --- @@ -17,9 +17,6 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm?view=graph-powershell-beta) - ## SYNTAX ### SendExpanded (Default) @@ -31,7 +28,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -42,7 +38,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -OnlineMeetingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -54,7 +49,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +59,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -110,7 +113,7 @@ HelpMessage: '' ### -Attendees - +. To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -138,7 +141,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -521,7 +524,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -531,7 +534,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [MessageType ]: virtualAppointmentMessageType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -555,28 +558,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgCommunicationOnlineMeetingVirtualAppointmentSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm) +- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 67dc9b1d36511..1a8fd15d9e1dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgUserOnlineMeetingVirtualAppointmentReminderSm --- @@ -16,9 +16,6 @@ title: Send-MgUserOnlineMeetingVirtualAppointmentReminderSm Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm?view=graph-powershell-beta) - ## SYNTAX ### SendExpanded (Default) @@ -30,7 +27,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId - [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -41,7 +37,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId - [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -53,7 +48,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -64,7 +58,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +70,9 @@ This cmdlet has the following aliases, Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualAppointmentNotification.Send, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualAppointmentNotification.Send, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -109,10 +93,6 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params -``` -This example shows how to use the Send-MgUserOnlineMeetingVirtualAppointmentReminderSm Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -144,7 +124,7 @@ HelpMessage: '' ### -Attendees - +. To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -172,7 +152,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -582,7 +562,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -592,7 +572,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [RemindBeforeTimeInMinutesType ]: remindBeforeTimeInMinutesType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -616,27 +596,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgUserOnlineMeetingVirtualAppointmentReminderSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm) +- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index ecd52c83d9b5d..63cb81417eb15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgUserOnlineMeetingVirtualAppointmentSm --- @@ -17,9 +17,6 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaUserOnlineMeetingVirtualAppointmentSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaUserOnlineMeetingVirtualAppointmentSm?view=graph-powershell-beta) - ## SYNTAX ### SendExpanded (Default) @@ -31,7 +28,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -OnlineMeetingId -UserId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -42,7 +38,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -OnlineMeetingId -UserId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -54,7 +49,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +59,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +72,9 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualAppointmentNotification.Send, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualAppointmentNotification.Send, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -111,10 +95,6 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserOnlineMeetingVirtualAppointmentSm -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params -``` -This example shows how to use the Send-MgUserOnlineMeetingVirtualAppointmentSm Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -146,7 +126,7 @@ HelpMessage: '' ### -Attendees - +. To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -174,7 +154,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -584,7 +564,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -594,7 +574,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [MessageType ]: virtualAppointmentMessageType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -618,27 +598,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgUserOnlineMeetingVirtualAppointmentSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm) +- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index abe7c131023a5..4658967b44a29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallRecordingContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordin -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgCommunicationAdhocCallRecordingContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -161,7 +168,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -433,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -457,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 75bc8113a209d..9d41a766a9c74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallTranscriptContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscr -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgCommunicationAdhocCallTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -161,7 +168,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -433,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -457,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index bd6ef3afa9d1e..bd3b7f59010de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdhocCallId @@ -163,7 +168,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -456,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -480,27 +485,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index 0974f30f523ad..f429fb65d046f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -InFile [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgCommunicationOnlineMeetingAttendeeReport -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -121,7 +126,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -435,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -459,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 96ec199bd7932..107b5555795db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -121,7 +126,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -435,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -459,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index 52a7c3f7fc4af..0bf3ecab74c3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -Onli -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgCommunicationOnlineMeetingRecordingContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -140,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -433,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -457,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index ca80211928065..9edf98ee752d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingTranscriptContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeetingId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgCommunicationOnlineMeetingTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -140,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -433,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -457,27 +464,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 140b0235c7f2b..d4cb043d4b253 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgCommunicationOnlineMeetingTranscriptMetadataContent [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -142,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -456,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -480,27 +485,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index a7502b07cc788..ef25f792d75ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresence --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationPresence Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +47,6 @@ Set-MgCommunicationPresence -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +57,6 @@ Set-MgCommunicationPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,11 +69,21 @@ This cmdlet has the following aliases, Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Activity - +. ```yaml Type: System.String @@ -134,7 +137,7 @@ HelpMessage: '' ### -Availability - +. ```yaml Type: System.String @@ -161,7 +164,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -232,7 +235,7 @@ HelpMessage: '' ### -ExpirationDuration - +. ```yaml Type: System.TimeSpan @@ -483,7 +486,7 @@ HelpMessage: '' ### -SessionId - +. ```yaml Type: System.String @@ -564,14 +567,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. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: [SessionId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -595,28 +598,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence) +- [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index 8d3c918657adf..3b122fb16554d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceAutomaticLocation --- @@ -17,9 +17,6 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceAutomaticLocation?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -30,7 +27,6 @@ Set-MgCommunicationPresenceAutomaticLocation -PresenceId [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -41,7 +37,6 @@ Set-MgCommunicationPresenceAutomaticLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +47,6 @@ Set-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +57,6 @@ Set-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +70,16 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -108,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -291,7 +294,7 @@ HelpMessage: '' ### -PlaceId - +. ```yaml Type: System.String @@ -511,12 +514,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -540,28 +543,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation) +- [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 71a49740a146c..2599c18232009 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceManualLocation --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationPresenceManualLocation Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceManualLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceManualLocation?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationPresenceManualLocation -PresenceId [-ResponseHeaders [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgCommunicationPresenceManualLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgCommunicationPresenceManualLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgCommunicationPresenceManualLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,16 @@ This cmdlet has the following aliases, Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -106,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -289,7 +292,7 @@ HelpMessage: '' ### -PlaceId - +. ```yaml Type: System.String @@ -509,12 +512,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -538,28 +541,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationPresenceManualLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation) +- [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index b1f3d59912332..233e5777b9a5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceStatusMessage --- @@ -16,9 +16,6 @@ title: Set-MgCommunicationPresenceStatusMessage Set a presence status message for a user. An optional expiration date and time can be supplied. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceStatusMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceStatusMessage?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgCommunicationPresenceStatusMessage -PresenceId [-ResponseHeadersV [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgCommunicationPresenceStatusMessage -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgCommunicationPresenceStatusMessage -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgCommunicationPresenceStatusMessage -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,16 @@ This cmdlet has the following aliases, Set a presence status message for a user. An optional expiration date and time can be supplied. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -106,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -483,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [StatusMessage ]: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. @@ -498,7 +501,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -519,7 +522,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -STATUSMESSAGE ``: presenceStatusMessage +STATUSMESSAGE : presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -535,28 +538,5 @@ See below for more possible values. ## RELATED LINKS -- [Set-MgCommunicationPresenceStatusMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage) +- [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index 37772aeddb8f4..8c9342c323327 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceUserPreferredPresence --- @@ -20,9 +20,6 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceUserPreferredPresence?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -33,7 +30,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -PresenceId [-Availability ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -44,7 +40,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -55,7 +50,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -66,7 +60,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,11 +76,21 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Activity - +. ```yaml Type: System.String @@ -141,7 +144,7 @@ HelpMessage: '' ### -Availability - +. ```yaml Type: System.String @@ -168,7 +171,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -239,7 +242,7 @@ HelpMessage: '' ### -ExpirationDuration - +. ```yaml Type: System.TimeSpan @@ -544,13 +547,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -574,28 +577,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgCommunicationPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence) +- [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index a86eea2b099d7..889f3901d4166 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingAttendeeReport --- @@ -16,9 +16,6 @@ title: Set-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgUserOnlineMeetingAttendeeReport -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -121,7 +126,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -456,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -480,27 +485,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index f89c980b3702a..6deac7026af0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingRecordingContent --- @@ -16,9 +16,6 @@ title: Set-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting -UserId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgUserOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -140,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -454,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -478,27 +485,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index 98ded4403d80b..da2ab05d7d0d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingTranscriptContent --- @@ -16,9 +16,6 @@ title: Set-MgUserOnlineMeetingTranscriptContent The content of the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -28,7 +25,7 @@ Set-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti -UserId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +35,7 @@ Set-MgUserOnlineMeetingTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -140,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -454,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -478,27 +485,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 274abf887bb76..682e3d587cfda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -16,9 +16,6 @@ title: Set-MgUserOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) - ## SYNTAX ### Set (Default) @@ -29,7 +26,6 @@ Set-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +36,6 @@ Set-MgUserOnlineMeetingTranscriptMetadataContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -142,7 +147,7 @@ HelpMessage: '' ### -Data - +. ```yaml Type: System.IO.Stream @@ -477,7 +482,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -501,27 +506,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index e5fa2a2a4a530..70a607419bf53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresence --- @@ -16,9 +16,6 @@ title: Set-MgUserPresence Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresence?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Activi [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgUserPresence -InputObject [-ResponseHeaders [-ExpirationDuration ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgUserPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -99,15 +83,11 @@ $params = @{ Set-MgUserPresence -UserId $userId -BodyParameter $params -``` -This example shows how to use the Set-MgUserPresence Cmdlet. - - ## PARAMETERS ### -Activity - +. ```yaml Type: System.String @@ -161,7 +141,7 @@ HelpMessage: '' ### -Availability - +. ```yaml Type: System.String @@ -188,7 +168,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -259,7 +239,7 @@ HelpMessage: '' ### -ExpirationDuration - +. ```yaml Type: System.TimeSpan @@ -483,7 +463,7 @@ HelpMessage: '' ### -SessionId - +. ```yaml Type: System.String @@ -591,14 +571,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. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: [SessionId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -622,27 +602,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence) +- [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index 53859bf3a0fdb..b70065af41a3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceAutomaticLocation --- @@ -17,9 +17,6 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceAutomaticLocation?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -30,7 +27,6 @@ Set-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -41,7 +37,6 @@ Set-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +47,6 @@ Set-MgUserPresenceAutomaticLocation -InputObject [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +57,6 @@ Set-MgUserPresenceAutomaticLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +70,20 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +$params = @{ + workLocationType = "office" + placeId = "eb706f15-137e-4722-b4d1-b601481d9251" +} + +# A UPN can also be used as -UserId. +Set-MgUserPresenceAutomaticLocation -UserId $userId -BodyParameter $params + ## PARAMETERS ### -AdditionalProperties @@ -108,7 +115,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -291,7 +298,7 @@ HelpMessage: '' ### -PlaceId - +. ```yaml Type: System.String @@ -511,12 +518,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -540,28 +547,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation) +- [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index af30ade63f962..6358bf592f7a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceManualLocation --- @@ -16,9 +16,6 @@ title: Set-MgUserPresenceManualLocation Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceManualLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceManualLocation?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgUserPresenceManualLocation -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgUserPresenceManualLocation -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgUserPresenceManualLocation -InputObject [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgUserPresenceManualLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,20 @@ This cmdlet has the following aliases, Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.CloudCommunications + +$params = @{ + workLocationType = "office" + placeId = "eb706f15-137e-4722-b4d1-b601481d9251" +} + +# A UPN can also be used as -UserId. +Set-MgUserPresenceManualLocation -UserId $userId -BodyParameter $params + ## PARAMETERS ### -AdditionalProperties @@ -106,7 +113,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -289,7 +296,7 @@ HelpMessage: '' ### -PlaceId - +. ```yaml Type: System.String @@ -509,12 +516,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -538,28 +545,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserPresenceManualLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation) +- [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 422e5b2ae4e57..6a48bb9d2924f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceStatusMessage --- @@ -16,9 +16,6 @@ title: Set-MgUserPresenceStatusMessage Set a presence status message for a user. An optional expiration date and time can be supplied. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceStatusMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceStatusMessage?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -29,7 +26,6 @@ Set-MgUserPresenceStatusMessage -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgUserPresenceStatusMessage -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgUserPresenceStatusMessage -InputObject [-StatusMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +56,6 @@ Set-MgUserPresenceStatusMessage -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Set a presence status message for a user. An optional expiration date and time can be supplied. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Set status message with expiry date -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -105,12 +89,7 @@ $params = @{ Set-MgUserPresenceStatusMessage -UserId $userId -BodyParameter $params -``` -This example will set status message with expiry date - -### Example 2: Set status message of another user - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -125,10 +104,6 @@ $params = @{ Set-MgUserPresenceStatusMessage -UserId $userId -BodyParameter $params -``` -This example will set status message of another user - - ## PARAMETERS ### -AdditionalProperties @@ -160,7 +135,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -537,7 +512,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [StatusMessage ]: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. @@ -552,7 +527,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -573,7 +548,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -STATUSMESSAGE ``: presenceStatusMessage +STATUSMESSAGE : presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -589,27 +564,5 @@ See below for more possible values. ## RELATED LINKS -- [Set-MgUserPresenceStatusMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage) +- [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index c07ba052bb4b6..d9f7d7b4db520 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceUserPreferredPresence --- @@ -20,9 +20,6 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceUserPreferredPresence?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -33,7 +30,6 @@ Set-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVariab [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -44,7 +40,6 @@ Set-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -55,7 +50,6 @@ Set-MgUserPresenceUserPreferredPresence -InputObject ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -66,7 +60,6 @@ Set-MgUserPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,18 +76,9 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Presence.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Presence.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -106,15 +90,11 @@ $params = @{ Set-MgUserPresenceUserPreferredPresence -UserId $userId -BodyParameter $params -``` -This example shows how to use the Set-MgUserPresenceUserPreferredPresence Cmdlet. - - ## PARAMETERS ### -Activity - +. ```yaml Type: System.String @@ -168,7 +148,7 @@ HelpMessage: '' ### -Availability - +. ```yaml Type: System.String @@ -195,7 +175,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -266,7 +246,7 @@ HelpMessage: '' ### -ExpirationDuration - +. ```yaml Type: System.TimeSpan @@ -571,13 +551,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -601,27 +581,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgUserPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence) -- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence) +- [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index 4a176825ea15c..614fcc924fa8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Start-MgCommunicationCallParticipantHoldMusic --- @@ -15,9 +15,6 @@ title: Start-MgCommunicationCallParticipantHoldMusic Put a participant on hold and play music in the background. -> [!NOTE] -> To view the beta release of this cmdlet, view [Start-MgBetaCommunicationCallParticipantHoldMusic](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Start-MgBetaCommunicationCallParticipantHoldMusic?view=graph-powershell-beta) - ## SYNTAX ### StartExpanded (Default) @@ -28,7 +25,6 @@ Start-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Start @@ -39,7 +35,6 @@ Start-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentityExpanded @@ -50,7 +45,6 @@ Start-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -61,7 +55,6 @@ Start-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Put a participant on hold and play music in the background. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -101,10 +85,6 @@ $params = @{ Start-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params -``` -This example shows how to use the Start-MgCommunicationCallParticipantHoldMusic Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -136,7 +116,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -212,7 +192,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -545,13 +525,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [CustomPrompt ]: prompt [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -575,27 +555,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Start-MgCommunicationCallParticipantHoldMusic](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic) +- [](https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index ef310ccc44698..245aeb7b8befd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgCommunicationCallMediaProcessing --- @@ -19,9 +19,6 @@ The cancelMediaProcessing method cancels any operation that is in-process as wel For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a subscribeToTone operation because it operates independent of any operation queue. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaCommunicationCallMediaProcessing](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Stop-MgBetaCommunicationCallMediaProcessing?view=graph-powershell-beta) - ## SYNTAX ### CancelExpanded (Default) @@ -31,7 +28,6 @@ Stop-MgCommunicationCallMediaProcessing -CallId [-ResponseHeadersVariab [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +38,6 @@ Stop-MgCommunicationCallMediaProcessing -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +47,7 @@ Stop-MgCommunicationCallMediaProcessing -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CancelViaIdentity @@ -63,7 +58,6 @@ Stop-MgCommunicationCallMediaProcessing -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +73,9 @@ The cancelMediaProcessing method cancels any operation that is in-process as wel For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a subscribeToTone operation because it operates independent of any operation queue. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.Initiate.All, Calls.AccessMedia.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -100,10 +85,6 @@ $params = @{ Stop-MgCommunicationCallMediaProcessing -CallId $callId -BodyParameter $params -``` -This example shows how to use the Stop-MgCommunicationCallMediaProcessing Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -135,7 +116,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -211,7 +192,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -490,11 +471,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -518,27 +499,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgCommunicationCallMediaProcessing](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing) +- [](https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index 17e962f2a9212..1e017313d0d89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgCommunicationCallParticipantHoldMusic --- @@ -15,9 +15,6 @@ title: Stop-MgCommunicationCallParticipantHoldMusic Reincorporate a participant previously put on hold to the call. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaCommunicationCallParticipantHoldMusic](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Stop-MgBetaCommunicationCallParticipantHoldMusic?view=graph-powershell-beta) - ## SYNTAX ### StopExpanded (Default) @@ -27,7 +24,7 @@ Stop-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Stop @@ -38,7 +35,6 @@ Stop-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StopViaIdentityExpanded @@ -48,7 +44,7 @@ Stop-MgCommunicationCallParticipantHoldMusic -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### StopViaIdentity @@ -59,7 +55,6 @@ Stop-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,18 +66,9 @@ This cmdlet has the following aliases, Reincorporate a participant previously put on hold to the call. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -92,10 +78,6 @@ $params = @{ Stop-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params -``` -This example shows how to use the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -127,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -203,7 +185,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -509,11 +491,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -537,27 +519,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgCommunicationCallParticipantHoldMusic](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic) -- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic) +- [](https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 86da45a1a5e4d..371ff940987d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCall --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationAdhocCall Update the navigation property adhocCalls in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgCommunicationAdhocCall -AdhocCallId [-ResponseHeadersVariable [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,6 @@ Update-MgCommunicationAdhocCall -AdhocCallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +44,7 @@ Update-MgCommunicationAdhocCall -InputObject [-Recordings ] [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgCommunicationAdhocCall -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property adhocCalls in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -516,7 +521,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: adhocCall +BODYPARAMETER : adhocCall [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -578,7 +583,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -670,27 +675,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index b7309035987e0..ff26718f4a35a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCallRecording --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationAdhocCallRecording Update the navigation property recordings in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgCommunicationAdhocCallRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgCommunicationAdhocCallRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property recordings in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -717,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -771,7 +778,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -785,27 +792,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index 1a7df440355f3..c735a41877c12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCallTranscript --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationAdhocCallTranscript Update the navigation property transcripts in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgCommunicationAdhocCallTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgCommunicationAdhocCallTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property transcripts in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -747,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -782,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -803,7 +808,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -817,27 +822,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 7c00463dc5533..1947536fb56d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallAudioRoutingGroup --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallAudioRoutingGroup Modify sources and receivers of an audioRoutingGroup. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI [-Receivers ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgCommunicationCallAudioRoutingGroup -InputObject ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +56,7 @@ Update-MgCommunicationCallAudioRoutingGroup -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +68,9 @@ This cmdlet has the following aliases, Modify sources and receivers of an audioRoutingGroup. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -100,10 +88,6 @@ receivers = @( Update-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId -BodyParameter $params -``` -This example shows how to use the Update-MgCommunicationCallAudioRoutingGroup Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -599,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: audioRoutingGroup +BODYPARAMETER : audioRoutingGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -607,7 +591,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -631,27 +615,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup) -- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup) +- [](https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 98e3976369f96..6367260716bd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallContentSharingSession --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallContentSharingSession Update the navigation property contentSharingSessions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgCommunicationCallContentSharingSession -CallId -ContentSharing [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgCommunicationCallContentSharingSession -CallId -ContentSharing -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,7 @@ Update-MgCommunicationCallContentSharingSession -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +53,6 @@ Update-MgCommunicationCallContentSharingSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +64,16 @@ This cmdlet has the following aliases, Update the navigation property contentSharingSessions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -482,7 +487,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -506,27 +511,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index 036717a534ea5..49f711aeff908 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallOperation --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallOperation Update the navigation property operations in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallOperation?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgCommunicationCallOperation -CallId -CommsOperationId [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgCommunicationCallOperation -CallId -CommsOperationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgCommunicationCallOperation -InputObject [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +56,7 @@ Update-MgCommunicationCallOperation -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +68,16 @@ This cmdlet has the following aliases, Update the navigation property operations in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -568,7 +575,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: commsOperation +BODYPARAMETER : commsOperation [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -581,7 +588,7 @@ Max limit is 256 chars. [Subcode ]: The result subcode. [Status ]: operationStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -602,7 +609,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -RESULTINFO ``: resultInfo +RESULTINFO : resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. @@ -611,27 +618,4 @@ RESULTINFO ``: resultInfo ## RELATED LINKS -- [Update-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index 0676633c1ccd2..f1b5339e6ad73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallParticipant --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallParticipant Update the navigation property participants in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgCommunicationCallParticipant -CallId -ParticipantId [-RestrictedExperience ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgCommunicationCallParticipant -CallId -ParticipantId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgCommunicationCallParticipant -InputObject ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgCommunicationCallParticipant -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property participants in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -739,7 +746,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: participant +BODYPARAMETER : participant [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -788,7 +795,7 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -INFO ``: participantInfo +INFO : participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -812,7 +819,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -840,7 +847,7 @@ MEDIASTREAMS : The list of media streams. [ServerMuted ]: If the media is muted by the server. [SourceId ]: The source ID. -RECORDINGINFO ``: recordingInfo +RECORDINGINFO : recordingInfo [(Any) ]: This indicates any property can be added to this object. [Initiator ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -854,11 +861,11 @@ For example, in the access reviews decisions API, this property might record the [User ]: identity [RecordingStatus ]: recordingStatus -REMOVEDSTATE ``: removedState +REMOVEDSTATE : removedState [(Any) ]: This indicates any property can be added to this object. [Reason ]: The removal reason for the participant resource. -RESTRICTEDEXPERIENCE ``: onlineMeetingRestricted +RESTRICTEDEXPERIENCE : onlineMeetingRestricted [(Any) ]: This indicates any property can be added to this object. [ContentSharingDisabled ]: onlineMeetingContentSharingDisabledReason [VideoDisabled ]: onlineMeetingVideoDisabledReason @@ -866,27 +873,4 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe ## RELATED LINKS -- [Update-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index b682b499b75b3..4368203eff1ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordOrganizerV2 --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallRecordOrganizerV2 Update the navigation property organizer_v2 in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -CallRecordId -BodyParamete [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +46,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +55,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property organizer_v2 in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -518,7 +521,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY ``: communicationsIdentitySet +IDENTITY : communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -537,7 +540,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -561,27 +564,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index a476238cae0e4..a882e9ff72ade 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordParticipantV2 --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallRecordParticipantV2 Update the navigation property participants_v2 in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,6 @@ Update-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +46,6 @@ Update-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +55,6 @@ Update-MgCommunicationCallRecordParticipantV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property participants_v2 in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -545,7 +548,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY ``: communicationsIdentitySet +IDENTITY : communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -564,7 +567,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -588,27 +591,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index c7fc49021c959..2ad1fb4a28033 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordSession --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationCallRecordSession Update the navigation property sessions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationCallRecordSession -CallRecordId -SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgCommunicationCallRecordSession -CallRecordId -SessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgCommunicationCallRecordSession -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgCommunicationCallRecordSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property sessions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -718,7 +723,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: session +BODYPARAMETER : session [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -866,26 +871,26 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z The DateTimeOffset 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 -CALLEE ``: endpoint +CALLEE : endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -CALLER ``: endpoint +CALLER : endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -FAILUREINFO ``: failureInfo +FAILUREINFO : failureInfo [(Any) ]: This indicates any property can be added to this object. [Reason ]: Classification of why a call or portion of a call failed. [Stage ]: failureStage -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1041,27 +1046,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS -- [Update-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 7279e864ae4dd..5c3c59b2acdfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordingStatus --- @@ -16,9 +16,6 @@ title: Update-MgCommunicationCallRecordingStatus Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordingStatus](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordingStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgCommunicationCallRecordingStatus -CallId [-ResponseHeadersVari [-AdditionalProperties ] [-ClientContext ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,6 @@ Update-MgCommunicationCallRecordingStatus -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,7 @@ Update-MgCommunicationCallRecordingStatus -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -60,7 +56,6 @@ Update-MgCommunicationCallRecordingStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calls.AccessMedia.All, Calls.JoinGroupCall.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -95,10 +81,6 @@ $params = @{ Update-MgCommunicationCallRecordingStatus -CallId $callId -BodyParameter $params -``` -This example shows how to use the Update-MgCommunicationCallRecordingStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -130,7 +112,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -206,7 +188,7 @@ HelpMessage: '' ### -ClientContext - +. ```yaml Type: System.String @@ -512,12 +494,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Status ]: recordingStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -541,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationCallRecordingStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus) -- [Graph API Reference](https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus) +- [](https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index f5c7c53c6bdaf..b9928fc60602e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeeting --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeeting Update the navigation property onlineMeetings in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -47,7 +44,6 @@ Update-MgCommunicationOnlineMeeting -OnlineMeetingId [-ResponseHeadersV [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -57,7 +53,7 @@ Update-MgCommunicationOnlineMeeting -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -88,7 +84,6 @@ Update-MgCommunicationOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -98,7 +93,7 @@ Update-MgCommunicationOnlineMeeting -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -110,6 +105,16 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetings in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1756,7 +1761,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING ``: audioConferencing +AUDIOCONFERENCING : audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1765,7 +1770,7 @@ AUDIOCONFERENCING ``: audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER ``: Represents a Microsoft online meeting. +BODYPARAMETER : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1973,7 +1978,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS ``: broadcastMeetingSettings +BROADCASTSETTINGS : broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -1990,18 +1995,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS ``: chatRestrictions +CHATRESTRICTIONS : chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2022,12 +2027,12 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION ``: itemBody +JOININFORMATION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings +JOINMEETINGIDSETTINGS : joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2038,13 +2043,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS ``: lobbyBypassSettings +LOBBYBYPASSSETTINGS : lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2094,7 +2099,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2133,7 +2138,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION ``: watermarkProtectionValues +WATERMARKPROTECTION : watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2141,27 +2146,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [Update-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 404cb6aae639f..088abbff990fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingAttendanceReport Update the navigation property attendanceReports in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -660,7 +666,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER ``: meetingAttendanceReport +BODYPARAMETER : meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -716,7 +722,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -740,27 +746,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index c2f33e97018ce..50d16a2b3258a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -58,7 +54,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +64,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +75,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -720,7 +724,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER ``: attendanceRecord +BODYPARAMETER : attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -747,7 +751,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -755,14 +759,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY ``: identity +IDENTITY : 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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -786,27 +790,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index 66bf579886c78..15b756ad4c293 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversation --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversation Update the navigation property onlineMeetingConversations in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-Starter ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,6 @@ Update-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +56,7 @@ Update-MgCommunicationOnlineMeetingConversation -InputObject ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +67,6 @@ Update-MgCommunicationOnlineMeetingConversation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,6 +78,16 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetingConversations in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -691,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A conversation for Teams QA online meeting. +BODYPARAMETER : A conversation for Teams QA online meeting. [(Any) ]: This indicates any property can be added to this object. [CreationMode ]: Indicates that the resource is in migration state and is currently being used for migration purposes. [Messages ]: The messages in a Viva Engage conversation. @@ -938,7 +943,7 @@ Read-only. The online meeting ID links the conversation to a specific meeting instance. [Organizer ]: The Viva Engage identities. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -996,7 +1001,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -ONLINEMEETING ``: Represents a Microsoft online meeting. +ONLINEMEETING : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1204,7 +1209,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -ORGANIZER ``: The Viva Engage identities. +ORGANIZER : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1217,7 +1222,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -STARTER ``: A Viva Engage conversation message. +STARTER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1258,27 +1263,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index 2d684cccd1f87..ddbd028c0e2f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessage --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationMessage Update the navigation property messages in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -59,7 +56,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +66,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,6 +78,16 @@ This cmdlet has the following aliases, Update the navigation property messages in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -717,12 +724,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -760,7 +767,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -797,7 +804,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -810,7 +817,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -885,7 +892,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -926,27 +933,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index ce40fff846dae..da1dd620eec9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReaction Update the navigation property reactions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +40,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +52,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +63,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -577,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -595,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -616,7 +619,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -632,27 +635,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index 72d394aec84ea..a0f18099f75cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReply Update the navigation property replies in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -34,7 +31,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +43,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -62,7 +59,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +70,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,6 +82,16 @@ This cmdlet has the following aliases, Update the navigation property replies in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -748,12 +755,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -791,7 +798,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -828,7 +835,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -841,7 +848,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -916,7 +923,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -957,27 +964,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 9f66fe1ad8e76..116d1d7711f90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction Update the navigation property reactions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +40,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +52,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +63,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -604,7 +607,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -622,7 +625,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -643,7 +646,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -659,27 +662,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index 42405782416a0..87e1be14c0eef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarter --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationStarter Update the navigation property starter in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -59,7 +56,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +66,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,6 +78,16 @@ This cmdlet has the following aliases, Update the navigation property starter in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -690,12 +697,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -733,7 +740,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -770,7 +777,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -783,7 +790,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -858,7 +865,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -899,27 +906,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index 3b856ded7de1e..0b81003c81031 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReaction Update the navigation property reactions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +50,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +61,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -548,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -566,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -587,7 +590,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,27 +606,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index cac49feafc87f..ecca93f938767 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReply Update the navigation property replies in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -60,7 +57,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +68,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -83,6 +80,16 @@ This cmdlet has the following aliases, Update the navigation property replies in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -719,12 +726,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: A Viva Engage conversation message. +BODYPARAMETER : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -762,7 +769,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION ``: Represents a conversation in Viva Engage. +CONVERSATION : Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -799,7 +806,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM ``: The Viva Engage identities. +FROM : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -812,7 +819,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -887,7 +894,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO ``: A Viva Engage conversation message. +REPLYTO : A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -928,27 +935,4 @@ Read-only. ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 70b1259ccccfb..56fb064a4c990 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction Update the navigation property reactions in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +40,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +52,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +63,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -577,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: A reaction to a conversation message. +BODYPARAMETER : A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -595,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -616,7 +619,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY ``: The Viva Engage identities. +REACTIONBY : The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -632,27 +635,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index c752da2959de6..1b35117843033 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingRecording Update the navigation property recordings in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgCommunicationOnlineMeetingRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgCommunicationOnlineMeetingRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property recordings in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -717,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -771,7 +778,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -785,27 +792,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index 5ede7d85c2781..64b6889529bf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationOnlineMeetingTranscript Update the navigation property transcripts in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgCommunicationOnlineMeetingTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property transcripts in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -747,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -782,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -803,7 +808,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -817,27 +822,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index 509126c6817a9..f8b268b744936 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationPresence --- @@ -15,9 +15,6 @@ title: Update-MgCommunicationPresence Update the navigation property presences in communications -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationPresence?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,6 @@ Update-MgCommunicationPresence -PresenceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,6 @@ Update-MgCommunicationPresence -InputObject [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,7 @@ Update-MgCommunicationPresence -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +69,16 @@ This cmdlet has the following aliases, Update the navigation property presences in communications +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Activity @@ -602,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: presence +BODYPARAMETER : presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -632,7 +636,7 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -653,12 +657,12 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -OUTOFOFFICESETTINGS ``: outOfOfficeSettings +OUTOFOFFICESETTINGS : outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE ``: presenceStatusMessage +STATUSMESSAGE : presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -671,7 +675,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION ``: userWorkLocation +WORKLOCATION : userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -680,27 +684,4 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [Update-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index 72f4efc231675..a04ac9b01b37f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeeting --- @@ -15,9 +15,6 @@ title: Update-MgUserOnlineMeeting Update the navigation property onlineMeetings in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeeting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -48,7 +45,6 @@ Update-MgUserOnlineMeeting -OnlineMeetingId -UserId [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -58,7 +54,7 @@ Update-MgUserOnlineMeeting -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -89,7 +85,6 @@ Update-MgUserOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -99,7 +94,7 @@ Update-MgUserOnlineMeeting -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -111,18 +106,9 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetings in users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | OnlineMeetings.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | OnlineMeetings.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CloudCommunications @@ -135,12 +121,7 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params -``` -This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. - -### Example 2: Code snippet - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.CloudCommunications @@ -153,10 +134,6 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params -``` -This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1830,7 +1807,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING ``: audioConferencing +AUDIOCONFERENCING : audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1839,7 +1816,7 @@ AUDIOCONFERENCING ``: audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER ``: Represents a Microsoft online meeting. +BODYPARAMETER : Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -2047,7 +2024,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS ``: broadcastMeetingSettings +BROADCASTSETTINGS : broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -2064,18 +2041,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO ``: chatInfo +CHATINFO : chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS ``: chatRestrictions +CHATRESTRICTIONS : chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2096,12 +2073,12 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION ``: itemBody +JOININFORMATION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings +JOINMEETINGIDSETTINGS : joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2112,13 +2089,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS ``: lobbyBypassSettings +LOBBYBYPASSSETTINGS : lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS ``: meetingParticipants +PARTICIPANTS : meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2168,7 +2145,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2207,7 +2184,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION ``: watermarkProtectionValues +WATERMARKPROTECTION : watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2215,26 +2192,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [Update-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index cc2fc71b7f254..01b01483054b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingAttendanceReport --- @@ -15,9 +15,6 @@ title: Update-MgUserOnlineMeetingAttendanceReport Update the navigation property attendanceReports in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,7 @@ Update-MgUserOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,7 @@ Update-MgUserOnlineMeetingAttendanceReport -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -687,7 +693,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER ``: meetingAttendanceReport +BODYPARAMETER : meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -743,7 +749,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -767,27 +773,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index bf55d85ca1c29..ae12f817876c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -58,7 +54,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +64,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +75,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -747,7 +751,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER ``: attendanceRecord +BODYPARAMETER : attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -774,7 +778,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -782,14 +786,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY ``: identity +IDENTITY : 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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -813,27 +817,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index 095180ef4572d..f1f5dd62144b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingRecording --- @@ -15,9 +15,6 @@ title: Update-MgUserOnlineMeetingRecording Update the navigation property recordings in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgUserOnlineMeetingRecording -InputObject [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgUserOnlineMeetingRecording -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property recordings in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -744,7 +751,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callRecording +BODYPARAMETER : callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -777,7 +784,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -798,7 +805,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -812,27 +819,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index 08106aa2da35c..d9177f1034c7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingTranscript --- @@ -15,9 +15,6 @@ title: Update-MgUserOnlineMeetingTranscript Update the navigation property transcripts in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgUserOnlineMeetingTranscript -InputObject [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgUserOnlineMeetingTranscript -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property transcripts in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -774,7 +779,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: callTranscript +BODYPARAMETER : callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -809,7 +814,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -830,7 +835,7 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER ``: identitySet +MEETINGORGANIZER : 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. @@ -844,27 +849,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 803b0f5cf9b82..69acc827ca318 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserPresence --- @@ -15,9 +15,6 @@ title: Update-MgUserPresence Update the navigation property presence in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserPresence?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Act [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,6 @@ Update-MgUserPresence -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,6 @@ Update-MgUserPresence -InputObject [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,7 @@ Update-MgUserPresence -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +69,16 @@ This cmdlet has the following aliases, Update the navigation property presence in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Activity @@ -602,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: presence +BODYPARAMETER : presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -632,7 +636,7 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -653,12 +657,12 @@ INPUTOBJECT ``: Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -OUTOFOFFICESETTINGS ``: outOfOfficeSettings +OUTOFOFFICESETTINGS : outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE ``: presenceStatusMessage +STATUSMESSAGE : presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -671,7 +675,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION ``: userWorkLocation +WORKLOCATION : userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -680,27 +684,4 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [Update-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence) From a48d1ab1c55a7c98220842f3781a5650f5d93673 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:48 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- ...Add-MgCommunicationCallLargeGalleryView.md | 26 ++++++++++- .../Clear-MgCommunicationPresence.md | 26 ++++++++++- ...gCommunicationPresenceAutomaticLocation.md | 24 +++++++++- .../Clear-MgCommunicationPresenceLocation.md | 24 +++++++++- ...municationPresenceUserPreferredPresence.md | 24 +++++++++- .../Clear-MgUserPresence.md | 26 ++++++++++- .../Clear-MgUserPresenceAutomaticLocation.md | 24 +++++++++- .../Clear-MgUserPresenceLocation.md | 24 +++++++++- ...ear-MgUserPresenceUserPreferredPresence.md | 24 +++++++++- .../Get-MgCommunicationAdhocCall.md | 24 +++++++++- .../Get-MgCommunicationAdhocCallCount.md | 22 +++++++++ .../Get-MgCommunicationAdhocCallRecording.md | 24 +++++++++- ...gCommunicationAdhocCallRecordingContent.md | 24 +++++++++- ...-MgCommunicationAdhocCallRecordingCount.md | 24 +++++++++- ...-MgCommunicationAdhocCallRecordingDelta.md | 24 +++++++++- .../Get-MgCommunicationAdhocCallTranscript.md | 24 +++++++++- ...CommunicationAdhocCallTranscriptContent.md | 24 +++++++++- ...MgCommunicationAdhocCallTranscriptCount.md | 24 +++++++++- ...MgCommunicationAdhocCallTranscriptDelta.md | 24 +++++++++- ...ationAdhocCallTranscriptMetadataContent.md | 24 +++++++++- .../Get-MgCommunicationCall.md | 24 +++++++++- ...et-MgCommunicationCallAudioRoutingGroup.md | 24 +++++++++- ...CommunicationCallAudioRoutingGroupCount.md | 24 +++++++++- ...gCommunicationCallContentSharingSession.md | 24 +++++++++- ...unicationCallContentSharingSessionCount.md | 24 +++++++++- .../Get-MgCommunicationCallCount.md | 22 +++++++++ .../Get-MgCommunicationCallOperation.md | 24 +++++++++- .../Get-MgCommunicationCallOperationCount.md | 24 +++++++++- .../Get-MgCommunicationCallParticipant.md | 24 +++++++++- ...Get-MgCommunicationCallParticipantCount.md | 24 +++++++++- .../Get-MgCommunicationCallRecord.md | 28 +++++++++-- .../Get-MgCommunicationCallRecordCount.md | 22 +++++++++ ...et-MgCommunicationCallRecordOrganizerV2.md | 24 +++++++++- ...et-MgCommunicationCallRecordParticipant.md | 24 +++++++++- ...-MgCommunicationCallRecordParticipantV2.md | 24 +++++++++- .../Get-MgCommunicationCallRecordSession.md | 24 +++++++++- ...t-MgCommunicationCallRecordSessionCount.md | 24 +++++++++- ...municationCallRecordSessionSegmentCount.md | 24 +++++++++- .../Get-MgCommunicationOnlineMeeting.md | 30 ++++++++++-- ...municationOnlineMeetingAttendanceReport.md | 24 +++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 24 +++++++++- ...ngAttendanceReportAttendanceRecordCount.md | 24 +++++++++- ...ationOnlineMeetingAttendanceReportCount.md | 24 +++++++++- ...ommunicationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...gCommunicationOnlineMeetingConversation.md | 24 +++++++++- ...unicationOnlineMeetingConversationCount.md | 22 +++++++++ ...icationOnlineMeetingConversationMessage.md | 24 +++++++++- ...eMeetingConversationMessageConversation.md | 24 +++++++++- ...onOnlineMeetingConversationMessageCount.md | 24 +++++++++- ...nlineMeetingConversationMessageReaction.md | 24 +++++++++- ...MeetingConversationMessageReactionCount.md | 24 +++++++++- ...onOnlineMeetingConversationMessageReply.md | 24 +++++++++- ...ingConversationMessageReplyConversation.md | 24 +++++++++- ...ineMeetingConversationMessageReplyCount.md | 24 +++++++++- ...MeetingConversationMessageReplyReaction.md | 24 +++++++++- ...ngConversationMessageReplyReactionCount.md | 24 +++++++++- ...OnlineMeetingConversationMessageReplyTo.md | 24 +++++++++- ...nOnlineMeetingConversationOnlineMeeting.md | 24 +++++++++- ...ConversationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...icationOnlineMeetingConversationStarter.md | 24 +++++++++- ...eMeetingConversationStarterConversation.md | 24 +++++++++- ...nlineMeetingConversationStarterReaction.md | 24 +++++++++- ...MeetingConversationStarterReactionCount.md | 24 +++++++++- ...onOnlineMeetingConversationStarterReply.md | 24 +++++++++- ...ingConversationStarterReplyConversation.md | 24 +++++++++- ...ineMeetingConversationStarterReplyCount.md | 24 +++++++++- ...MeetingConversationStarterReplyReaction.md | 24 +++++++++- ...ngConversationStarterReplyReactionCount.md | 24 +++++++++- ...OnlineMeetingConversationStarterReplyTo.md | 24 +++++++++- .../Get-MgCommunicationOnlineMeetingCount.md | 22 +++++++++ ...Get-MgCommunicationOnlineMeetingMessage.md | 26 ++++++++++- ...t-MgCommunicationOnlineMeetingRecording.md | 24 +++++++++- ...municationOnlineMeetingRecordingContent.md | 24 +++++++++- ...ommunicationOnlineMeetingRecordingCount.md | 24 +++++++++- ...ommunicationOnlineMeetingRecordingDelta.md | 24 +++++++++- ...-MgCommunicationOnlineMeetingTranscript.md | 24 +++++++++- ...unicationOnlineMeetingTranscriptContent.md | 24 +++++++++- ...mmunicationOnlineMeetingTranscriptCount.md | 24 +++++++++- ...mmunicationOnlineMeetingTranscriptDelta.md | 24 +++++++++- ...nOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- ...lineMeetingVirtualAppointmentJoinWebUrl.md | 24 +++++++++- .../Get-MgCommunicationPresence.md | 24 +++++++++- .../Get-MgCommunicationPresenceByUserId.md | 24 +++++++++- .../Get-MgCommunicationPresenceCount.md | 22 +++++++++ .../Get-MgUserOnlineMeeting.md | 30 ++++++++++-- ...Get-MgUserOnlineMeetingAttendanceReport.md | 24 +++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 24 +++++++++- ...ngAttendanceReportAttendanceRecordCount.md | 24 +++++++++- ...gUserOnlineMeetingAttendanceReportCount.md | 24 +++++++++- .../Get-MgUserOnlineMeetingAttendeeReport.md | 24 +++++++++- .../Get-MgUserOnlineMeetingCount.md | 24 +++++++++- .../Get-MgUserOnlineMeetingRecording.md | 24 +++++++++- ...Get-MgUserOnlineMeetingRecordingContent.md | 24 +++++++++- .../Get-MgUserOnlineMeetingRecordingCount.md | 24 +++++++++- .../Get-MgUserOnlineMeetingRecordingDelta.md | 24 +++++++++- .../Get-MgUserOnlineMeetingTranscript.md | 24 +++++++++- ...et-MgUserOnlineMeetingTranscriptContent.md | 24 +++++++++- .../Get-MgUserOnlineMeetingTranscriptCount.md | 24 +++++++++- .../Get-MgUserOnlineMeetingTranscriptDelta.md | 24 +++++++++- ...rOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- ...lineMeetingVirtualAppointmentJoinWebUrl.md | 24 +++++++++- .../Get-MgUserPresence.md | 24 +++++++++- .../Invoke-MgAnswerCommunicationCall.md | 26 ++++++++++- ...MgCreateOrGetCommunicationOnlineMeeting.md | 28 +++++++++-- ...ke-MgInviteCommunicationCallParticipant.md | 26 ++++++++++- .../Invoke-MgKeepCommunicationCallAlive.md | 24 +++++++++- ...nicationCallTeleconferenceDeviceQuality.md | 26 ++++++++++- .../Invoke-MgMuteCommunicationCall.md | 26 ++++++++++- ...voke-MgMuteCommunicationCallParticipant.md | 26 ++++++++++- .../Invoke-MgPlayCommunicationCallPrompt.md | 26 ++++++++++- ...nvoke-MgRecordCommunicationCallResponse.md | 30 ++++++++++-- .../Invoke-MgRedirectCommunicationCall.md | 26 ++++++++++- .../Invoke-MgRejectCommunicationCall.md | 26 ++++++++++- ...voke-MgSubscribeCommunicationCallToTone.md | 26 ++++++++++- .../Invoke-MgUnmuteCommunicationCall.md | 26 ++++++++++- .../Microsoft.Graph.CloudCommunications.md | 19 ++++++++ .../Move-MgCommunicationCall.md | 30 ++++++++++-- .../New-MgCommunicationAdhocCall.md | 24 +++++++++- .../New-MgCommunicationAdhocCallRecording.md | 28 +++++++++-- .../New-MgCommunicationAdhocCallTranscript.md | 28 +++++++++-- .../New-MgCommunicationCall.md | 40 ++++++++++++---- ...ew-MgCommunicationCallAudioRoutingGroup.md | 26 ++++++++++- ...gCommunicationCallContentSharingSession.md | 24 +++++++++- .../New-MgCommunicationCallOperation.md | 28 +++++++++-- .../New-MgCommunicationCallParticipant.md | 34 +++++++++++--- ...-MgCommunicationCallRecordParticipantV2.md | 26 ++++++++++- .../New-MgCommunicationCallRecordSession.md | 32 +++++++++++-- .../New-MgCommunicationOnlineMeeting.md | 44 +++++++++++++----- ...municationOnlineMeetingAttendanceReport.md | 26 ++++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 30 ++++++++++-- ...gCommunicationOnlineMeetingConversation.md | 30 ++++++++++-- ...icationOnlineMeetingConversationMessage.md | 34 +++++++++++--- ...nlineMeetingConversationMessageReaction.md | 28 +++++++++-- ...onOnlineMeetingConversationMessageReply.md | 34 +++++++++++--- ...MeetingConversationMessageReplyReaction.md | 28 +++++++++-- ...nlineMeetingConversationStarterReaction.md | 28 +++++++++-- ...onOnlineMeetingConversationStarterReply.md | 34 +++++++++++--- ...MeetingConversationStarterReplyReaction.md | 28 +++++++++-- ...w-MgCommunicationOnlineMeetingRecording.md | 28 +++++++++-- ...-MgCommunicationOnlineMeetingTranscript.md | 28 +++++++++-- .../New-MgCommunicationPresence.md | 30 ++++++++++-- .../New-MgUserOnlineMeeting.md | 46 ++++++++++++++----- ...New-MgUserOnlineMeetingAttendanceReport.md | 26 ++++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../New-MgUserOnlineMeetingRecording.md | 28 +++++++++-- .../New-MgUserOnlineMeetingTranscript.md | 28 +++++++++-- .../Remove-MgCommunicationAdhocCall.md | 24 +++++++++- ...emove-MgCommunicationAdhocCallRecording.md | 24 +++++++++- ...gCommunicationAdhocCallRecordingContent.md | 24 +++++++++- ...move-MgCommunicationAdhocCallTranscript.md | 24 +++++++++- ...CommunicationAdhocCallTranscriptContent.md | 24 +++++++++- ...ationAdhocCallTranscriptMetadataContent.md | 24 +++++++++- .../Remove-MgCommunicationCall.md | 24 +++++++++- ...ve-MgCommunicationCallAudioRoutingGroup.md | 24 +++++++++- ...gCommunicationCallContentSharingSession.md | 24 +++++++++- .../Remove-MgCommunicationCallOperation.md | 24 +++++++++- .../Remove-MgCommunicationCallParticipant.md | 24 +++++++++- ...ve-MgCommunicationCallRecordOrganizerV2.md | 24 +++++++++- ...-MgCommunicationCallRecordParticipantV2.md | 24 +++++++++- ...Remove-MgCommunicationCallRecordSession.md | 24 +++++++++- .../Remove-MgCommunicationOnlineMeeting.md | 24 +++++++++- ...municationOnlineMeetingAttendanceReport.md | 24 +++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 24 +++++++++- ...ommunicationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...gCommunicationOnlineMeetingConversation.md | 24 +++++++++- ...icationOnlineMeetingConversationMessage.md | 24 +++++++++- ...nlineMeetingConversationMessageReaction.md | 24 +++++++++- ...onOnlineMeetingConversationMessageReply.md | 24 +++++++++- ...MeetingConversationMessageReplyReaction.md | 24 +++++++++- ...ConversationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...icationOnlineMeetingConversationStarter.md | 24 +++++++++- ...nlineMeetingConversationStarterReaction.md | 24 +++++++++- ...onOnlineMeetingConversationStarterReply.md | 24 +++++++++- ...MeetingConversationStarterReplyReaction.md | 24 +++++++++- ...e-MgCommunicationOnlineMeetingRecording.md | 24 +++++++++- ...municationOnlineMeetingRecordingContent.md | 24 +++++++++- ...-MgCommunicationOnlineMeetingTranscript.md | 24 +++++++++- ...unicationOnlineMeetingTranscriptContent.md | 24 +++++++++- ...nOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- .../Remove-MgCommunicationPresence.md | 24 +++++++++- .../Remove-MgUserOnlineMeeting.md | 24 +++++++++- ...ove-MgUserOnlineMeetingAttendanceReport.md | 24 +++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 24 +++++++++- ...emove-MgUserOnlineMeetingAttendeeReport.md | 24 +++++++++- .../Remove-MgUserOnlineMeetingRecording.md | 24 +++++++++- ...ove-MgUserOnlineMeetingRecordingContent.md | 24 +++++++++- .../Remove-MgUserOnlineMeetingTranscript.md | 24 +++++++++- ...ve-MgUserOnlineMeetingTranscriptContent.md | 24 +++++++++- ...rOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- .../Remove-MgUserPresence.md | 24 +++++++++- ...me-MgCommunicationCallScreenSharingRole.md | 26 ++++++++++- .../Send-MgCommunicationCallDtmfTone.md | 26 ++++++++++- ...lineMeetingVirtualAppointmentReminderSm.md | 26 ++++++++++- ...cationOnlineMeetingVirtualAppointmentSm.md | 26 ++++++++++- ...lineMeetingVirtualAppointmentReminderSm.md | 26 ++++++++++- ...MgUserOnlineMeetingVirtualAppointmentSm.md | 26 ++++++++++- ...gCommunicationAdhocCallRecordingContent.md | 24 +++++++++- ...CommunicationAdhocCallTranscriptContent.md | 24 +++++++++- ...ationAdhocCallTranscriptMetadataContent.md | 24 +++++++++- ...ommunicationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...ConversationOnlineMeetingAttendeeReport.md | 24 +++++++++- ...municationOnlineMeetingRecordingContent.md | 24 +++++++++- ...unicationOnlineMeetingTranscriptContent.md | 24 +++++++++- ...nOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- .../Set-MgCommunicationPresence.md | 26 ++++++++++- ...gCommunicationPresenceAutomaticLocation.md | 26 ++++++++++- ...t-MgCommunicationPresenceManualLocation.md | 26 ++++++++++- ...et-MgCommunicationPresenceStatusMessage.md | 28 +++++++++-- ...municationPresenceUserPreferredPresence.md | 26 ++++++++++- .../Set-MgUserOnlineMeetingAttendeeReport.md | 24 +++++++++- ...Set-MgUserOnlineMeetingRecordingContent.md | 24 +++++++++- ...et-MgUserOnlineMeetingTranscriptContent.md | 24 +++++++++- ...rOnlineMeetingTranscriptMetadataContent.md | 24 +++++++++- .../Set-MgUserPresence.md | 26 ++++++++++- .../Set-MgUserPresenceAutomaticLocation.md | 26 ++++++++++- .../Set-MgUserPresenceManualLocation.md | 26 ++++++++++- .../Set-MgUserPresenceStatusMessage.md | 28 +++++++++-- ...Set-MgUserPresenceUserPreferredPresence.md | 26 ++++++++++- ...MgCommunicationCallParticipantHoldMusic.md | 26 ++++++++++- ...Stop-MgCommunicationCallMediaProcessing.md | 26 ++++++++++- ...MgCommunicationCallParticipantHoldMusic.md | 26 ++++++++++- .../Update-MgCommunicationAdhocCall.md | 26 ++++++++++- ...pdate-MgCommunicationAdhocCallRecording.md | 28 +++++++++-- ...date-MgCommunicationAdhocCallTranscript.md | 28 +++++++++-- ...te-MgCommunicationCallAudioRoutingGroup.md | 26 ++++++++++- ...gCommunicationCallContentSharingSession.md | 24 +++++++++- .../Update-MgCommunicationCallOperation.md | 28 +++++++++-- .../Update-MgCommunicationCallParticipant.md | 34 +++++++++++--- ...te-MgCommunicationCallRecordOrganizerV2.md | 26 ++++++++++- ...-MgCommunicationCallRecordParticipantV2.md | 26 ++++++++++- ...Update-MgCommunicationCallRecordSession.md | 32 +++++++++++-- ...date-MgCommunicationCallRecordingStatus.md | 26 ++++++++++- .../Update-MgCommunicationOnlineMeeting.md | 46 ++++++++++++++----- ...municationOnlineMeetingAttendanceReport.md | 26 ++++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 30 ++++++++++-- ...gCommunicationOnlineMeetingConversation.md | 32 +++++++++++-- ...icationOnlineMeetingConversationMessage.md | 34 +++++++++++--- ...nlineMeetingConversationMessageReaction.md | 28 +++++++++-- ...onOnlineMeetingConversationMessageReply.md | 34 +++++++++++--- ...MeetingConversationMessageReplyReaction.md | 28 +++++++++-- ...icationOnlineMeetingConversationStarter.md | 34 +++++++++++--- ...nlineMeetingConversationStarterReaction.md | 28 +++++++++-- ...onOnlineMeetingConversationStarterReply.md | 34 +++++++++++--- ...MeetingConversationStarterReplyReaction.md | 28 +++++++++-- ...e-MgCommunicationOnlineMeetingRecording.md | 28 +++++++++-- ...-MgCommunicationOnlineMeetingTranscript.md | 28 +++++++++-- .../Update-MgCommunicationPresence.md | 32 +++++++++++-- .../Update-MgUserOnlineMeeting.md | 46 ++++++++++++++----- ...ate-MgUserOnlineMeetingAttendanceReport.md | 26 ++++++++++- ...MeetingAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../Update-MgUserOnlineMeetingRecording.md | 28 +++++++++-- .../Update-MgUserOnlineMeetingTranscript.md | 28 +++++++++-- .../Update-MgUserPresence.md | 32 +++++++++++-- 253 files changed, 6049 insertions(+), 486 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 704365c1b077c..8273c9ce30a48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -465,11 +465,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -495,3 +495,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview) - [](https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 25d2551ab8bc5..222f2f43c62fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -486,11 +486,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SessionId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -516,3 +516,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence) - [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index 78a11f4292dcd..8b826159c3fcb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -391,3 +391,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation) - [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index 6ef89324dcbe9..428ae9cb4ffdf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation) - [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index 9e52e2aa5b207..a132a735f8a35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence) - [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index e6c20562b8892..d9103b37fa7df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -487,11 +487,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [SessionId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -517,3 +517,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence) - [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index 8d7da343847df..dcbb89537023c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -390,3 +390,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation) - [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index 521e782df547b..a4023a7fff267 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -362,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation) - [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index f2dc08ee27a3b..825ad155cdc70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -387,3 +387,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence) - [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index 0c49f78cf6119..8175d2089896f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -526,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index ae62aa1707924..5ee45786575bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index 5557e6a3f29de..2ac2a849a1ef2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -681,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -706,3 +706,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 332d74ce34c1b..2870b6ff3316c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index 9665ae69253f6..0617e3d3b8e5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index 11b45e4a7d364..b9df4e356277f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index 8162d6df7201b..a66d4f0121713 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -681,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -706,3 +706,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index 91232e5c516ae..17b1f3fc00550 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index 7fbe3d61a46c2..6eb841827f0cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index 05c56fd65a2dc..5c36218ac33de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index fafa022aaa1d4..02e2676197ef4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index a3bf65737fda9..ce1a676994889 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -346,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -372,3 +372,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall) - [](https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 970de7eb6455e..7b4e276df45d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup) - [](https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index f92c0239da077..a4ab9e59cc171 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index e959321912fb0..3f0c662b0fa6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -583,3 +583,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession) - [](https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index b3afc0f388585..c9908c21fd02a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index 27eb074403f96..f5bcb628ffe2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 2907b5201ab9a..5c480d6c9a6db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation) - [](https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index cd68ad1c2fc57..0317340bfd0e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index 3f8a38d13b90a..e75a6296058c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant) - [](https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 0c2e096fafada..09b71e5ca938c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index f34fdd4a45fd1..50a59cbc24db4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -14,7 +14,7 @@ title: Get-MgCommunicationCallRecord ## SYNOPSIS Retrieve the properties and relationships of a callRecord object. -You can get the id of a callRecord in two ways:\r\n* Subscribe to change notifications to the /communications/callRecords endpoint.\r\n* Use the callChainId property of a call. +You can get the id of a callRecord in two ways:\r* Subscribe to change notifications to the /communications/callRecords endpoint.\r* Use the callChainId property of a call. The call record is available only after the associated call is completed. ## SYNTAX @@ -46,7 +46,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Retrieve the properties and relationships of a callRecord object. -You can get the id of a callRecord in two ways:\r\n* Subscribe to change notifications to the /communications/callRecords endpoint.\r\n* Use the callChainId property of a call. +You can get the id of a callRecord in two ways:\r* Subscribe to change notifications to the /communications/callRecords endpoint.\r* Use the callChainId property of a call. The call record is available only after the associated call is completed. ## EXAMPLES @@ -351,7 +351,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -377,3 +377,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord) - [](https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index 77f61f5c1a2fe..e28a179aaf605 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index 57abc5c0caf0d..9afa6fcff4b14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -345,7 +345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -370,3 +370,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index 77ce040d4ec15..8bc7b3eb3a57a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index 2645b985db551..42749bf815cf2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2) - [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index 54e68404b13b8..7cfe07e0fe265 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -564,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -590,3 +590,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession) - [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index 8a9bdc559259f..7f607d928d8af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 1412c57a5acfc..115b414baa25d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 6c6082b43cc30..7d2c8b007c421 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -788,7 +788,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -816,13 +816,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -843,7 +843,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -866,3 +866,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting) - [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index 954b856dd1ae5..3be1e6a73afab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -581,3 +581,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 42e8c6141df83..991d5dff1846d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -584,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -609,3 +609,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index e2ae6e80593ff..00411cca8e179 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index 84d2ab2ac3457..51b3a5ca686ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index 28114e92bdb3f..d5c250fac7e02 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index 5d0cc27c866c1..3da431690fc0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -552,3 +552,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index 9b6902145203a..1b6d906e31430 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index 1d6a36ed84b30..288540dbdaf34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index 5d79463a35974..e78079c1277b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -368,7 +368,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -393,3 +393,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index e3945c9cb4dfe..5e0393bdcf158 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index 7e303fdd5bf37..8264fbe38260c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -581,7 +581,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction) - [](https://learn.microsoft.com/graph/api/engagementconversationdiscussionmessage-list-reactions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index 2c7ebc46a5669..dd337b6ba5c20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index be5c662624eca..eb877b5fdeec2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index 07d07a3204641..b937bcbb2cdcb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -389,7 +389,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index d380520445390..1d39e5d399300 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index f71c59b05882a..cbd0e3b61a43b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -612,7 +612,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -637,3 +637,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index b30a6a3a75fc2..2e5d1e34db107 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 0020f078bbc49..04ab6f7a95e78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -425,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index 8dea15f33eb1c..0777cba6a20f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -369,3 +369,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index c0854ab509333..d8cf9da424812 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -369,3 +369,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index 4380e6a2c7b7e..a93cba6662740 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -369,3 +369,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index 4daeb33bc9f97..dd35fb04057a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -346,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -371,3 +371,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index 658c17fd7fd14..cd75a86d86df3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -581,3 +581,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index 3b4b3b5008f18..44d33ed35dad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index 63e224d86ee98..c3d937681e79d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index 5fa2eea9f159e..d64c6f6c78b27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -368,7 +368,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -393,3 +393,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index 7b8a6cdc5a460..6ea4fbc07c64d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 110b4f16e15ca..e99041097e715 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index 8145a5910fd1c..bdc76f0f3d6ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index b308a20ebf372..5d82ee799246a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -398,7 +398,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index c4320db76a47a..296c417b44e37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index 61c6d006c5335..bb0773b2675bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -15,7 +15,7 @@ title: Get-MgCommunicationOnlineMeetingMessage Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. -The export includes:\r\n- The original question or discussion text\r\n- The user who posted the message\r\n- All replies and responders\r\n- Vote counts\r\n- Moderation status (pending or dismissed)\r\n- Private replies\r\n- The meeting ID and organizer ID that are used for mapping to meeting metadata. +The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. ## SYNTAX @@ -38,7 +38,7 @@ This cmdlet has the following aliases, Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. -The export includes:\r\n- The original question or discussion text\r\n- The user who posted the message\r\n- All replies and responders\r\n- Vote counts\r\n- Moderation status (pending or dismissed)\r\n- Private replies\r\n- The meeting ID and organizer ID that are used for mapping to meeting metadata. +The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. ## EXAMPLES @@ -416,3 +416,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage) - [](https://learn.microsoft.com/graph/api/cloudcommunications-getallonlinemeetingmessages?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index 17e834d2f6d88..8815e02c113ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -681,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -707,3 +707,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording) - [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index a20a1320e0de7..d98f17447c979 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index f6756e552e42c..4fb04485a6b3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index 61fd2a8b51618..61c5f21ebae93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index 753bf0ef501db..0e63ec60d99ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -681,7 +681,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -707,3 +707,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript) - [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index 1d11542d308d5..81d731b08f0d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index 0d88787262a33..b0145842cc11f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -341,7 +341,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -366,3 +366,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index 72e6fd37ad5a5..c2c4369103964 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 06b040cff2c28..de0e41abfe45b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -390,3 +390,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index 70a1b3f304061..844dd3e7b8162 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -303,7 +303,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -329,3 +329,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl) - [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index b506aadc51007..46c4f8dbc140c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -549,3 +549,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence) - [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 998d8256c748f..72393f8235358 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.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. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Ids ]: @@ -378,3 +378,25 @@ BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -951,13 +951,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -978,7 +978,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -1000,3 +1000,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeeting) - [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index e257e1003e4f3..34c0e16a29b97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -582,7 +582,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index c1650318452d1..91f900312f493 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -611,7 +611,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -636,3 +636,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 42c5869ad86b8..763bbaae71c7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index 8a33b9ac60c7c..c075c7785c3ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index 70f24476ab832..3181424685af5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -362,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -387,3 +387,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index 79fa218e07b64..209eb21be9826 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index 6ca7c39a5138d..da9eefdfdcb1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -789,7 +789,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -816,3 +816,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording) - [](https://learn.microsoft.com/graph/api/callrecording-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 2c01700ab7594..5ec1649979713 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index 7d39e3a122f4f..35e7d71e68825 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -386,3 +386,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index a6d257f583e51..8716f0567c816 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -560,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 80cfbab2ffb61..6c90463af47f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -789,7 +789,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -817,3 +817,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 058400b3b1ebd..b43fe196dc620 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -393,7 +393,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -419,3 +419,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent) - [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index 6798a07914515..27907cf7039ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -362,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -387,3 +387,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index df7f78593c8b5..cc2d8e97bb6cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -560,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index a2338824e1e54..a17b422ad48e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -413,3 +413,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent) - [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index 46605ace61b21..654ebc97548fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -322,7 +322,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -348,3 +348,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl) - [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index 2e320f4b71454..6ff3b5f4588e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -347,7 +347,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence) - [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index fbf2499dd11e7..d26713df8587e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -652,7 +652,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AcceptedModalities ]: [CallOptions ]: incomingCallOptions @@ -666,7 +666,7 @@ BODYPARAMETER ]: This indicates any property can be added to this object. [ParticipantCapacity ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -692,3 +692,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall) - [](https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index 5e27f69841813..2419818959338 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -475,7 +475,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ChatInfo ]: chatInfo [(Any) ]: This indicates any property can be added to this object. @@ -503,13 +503,13 @@ For example, in the access reviews decisions API, this property might record the [StartDateTime ]: [Subject ]: -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -531,3 +531,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting) - [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 041b5b3ea7883..07a6717e48863 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -621,7 +621,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Participants ]: @@ -645,7 +645,7 @@ Whether to remove them from the main mixer. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -692,3 +692,25 @@ For peer-to-peer case, the call will be dropped once the participant is added su - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant) - [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index aa22375be0288..c5aaf972df7bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -373,7 +373,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -399,3 +399,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive) - [](https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 07728d5db38a3..bc6c36a48b752 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -480,7 +480,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : . +BODY ``: . [(Any) ]: This indicates any property can be added to this object. [Quality ]: teleconferenceDeviceQuality [(Any) ]: This indicates any property can be added to this object. @@ -527,7 +527,7 @@ If the media enabled and disabled multiple times, MediaDuration will the summati [ParticipantId ]: A unique identifier for a specific participant in a conference. The CVI partner needs to copy over Call.MyParticipantId to this property. -QUALITY : teleconferenceDeviceQuality +QUALITY ``: teleconferenceDeviceQuality [(Any) ]: This indicates any property can be added to this object. [CallChainId ]: A unique identifier for all the participant calls in a conference or a unique identifier for two participant calls in P2P call. This needs to be copied over from Microsoft.Graph.Call.CallChainId. @@ -577,3 +577,25 @@ The CVI partner needs to copy over Call.MyParticipantId to this property. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality) - [](https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 2ea829c03cdf5..205081ed9f6a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -467,11 +467,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall) - [](https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index e75d8708e8b69..fa4cd368dacbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -495,11 +495,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant) - [](https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index 29136cea43312..f7eb0c44c312d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -503,12 +503,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Prompts ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -534,3 +534,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt) - [](https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 45af3fb7455ef..223280778d333 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -13,7 +13,7 @@ title: Invoke-MgRecordCommunicationCallResponse ## SYNOPSIS -Records a short audio response from the caller.\r\nA bot can utilize this to capture a voice response from a caller after they are prompted for a response. +Records a short audio response from the caller.\rA bot can utilize this to capture a voice response from a caller after they are prompted for a response. For further information on how to handle operations, please review commsOperation This action is not intended to record the entire call. The maximum length of recording is 2 minutes. The recording is not saved permanently by the Cloud Communications Platform and is discarded shortly after the call ends. @@ -72,7 +72,7 @@ This cmdlet has the following aliases, ## DESCRIPTION -Records a short audio response from the caller.\r\nA bot can utilize this to capture a voice response from a caller after they are prompted for a response. +Records a short audio response from the caller.\rA bot can utilize this to capture a voice response from a caller after they are prompted for a response. For further information on how to handle operations, please review commsOperation This action is not intended to record the entire call. The maximum length of recording is 2 minutes. The recording is not saved permanently by the Cloud Communications Platform and is discarded shortly after the call ends. @@ -684,7 +684,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [BargeInAllowed ]: [ClientContext ]: @@ -695,7 +695,7 @@ BODYPARAMETER ]: [StopTones ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -721,3 +721,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse) - [](https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index abbd29c337e83..a2a9b6e3fd4bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -560,7 +560,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [CallbackUri ]: [Targets ]: @@ -585,7 +585,7 @@ The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. [Timeout ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -632,3 +632,25 @@ For peer-to-peer case, the call will be dropped once the participant is added su - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall) - [](https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 68fa1d325d7e9..028abda17f6b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -534,12 +534,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [CallbackUri ]: [Reason ]: rejectReason -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall) - [](https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 41dca4bee1461..7e66e7b26e9ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -463,11 +463,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -493,3 +493,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone) - [](https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 50f0cc310af6e..0f1d702493519 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -467,11 +467,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall) - [](https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md index 75e4c496cebdb..5544f55a6f5be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md @@ -571,3 +571,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserPresence](Update-MgUserPresence.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index 7de9a15dd1ca2..1dca4205a0a71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -621,7 +621,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [TransferTarget ]: invitationParticipantInfo [(Any) ]: This indicates any property can be added to this object. @@ -659,7 +659,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -680,7 +680,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -TRANSFEREE : participantInfo +TRANSFEREE ``: participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -704,7 +704,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -TRANSFERTARGET : invitationParticipantInfo +TRANSFERTARGET ``: invitationParticipantInfo [(Any) ]: This indicates any property can be added to this object. [Hidden ]: Optional. Whether to hide the participant from the roster. @@ -731,3 +731,25 @@ For peer-to-peer case, the call will be dropped once the participant is added su - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall) - [](https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index 20144fed7365a..52c39922f2697 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -411,7 +411,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : adhocCall +BODYPARAMETER ``: adhocCall [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -545,3 +545,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index 57bdb4723120f..d44369a2c827d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -696,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -729,7 +729,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -750,7 +750,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -765,3 +765,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 3ee079e77a890..1e47936bfefd0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -725,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -760,7 +760,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -781,7 +781,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -796,3 +796,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index af451b9c2d8fe..ffc344d4a1b9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -1305,7 +1305,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -BODYPARAMETER : call +BODYPARAMETER ``: call [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1441,7 +1441,7 @@ For peer-to-peer case, the call will be dropped once the participant is added su [LastModifiedDateTime ]: The state modified time in UTC. [State ]: callTranscriptionState -CALLOPTIONS : callOptions +CALLOPTIONS ``: callOptions [(Any) ]: This indicates any property can be added to this object. [HideBotAfterEscalation ]: Indicates whether to hide the app after the call is escalated. [IsContentSharingNotificationEnabled ]: Indicates whether content sharing notifications should be enabled for the call. @@ -1463,7 +1463,7 @@ For example, in the access reviews decisions API, this property might record the [Original ]: identitySet [RoutingType ]: routingType -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. @@ -1473,7 +1473,7 @@ CONTENTSHARINGSESSIONS : . [Id ]: The unique identifier for an entity. Read-only. -INCOMINGCONTEXT : incomingContext +INCOMINGCONTEXT ``: incomingContext [(Any) ]: This indicates any property can be added to this object. [ObservedParticipantId ]: The ID of the participant that is under observation. Read-only. @@ -1491,7 +1491,7 @@ For example, in the access reviews decisions API, this property might record the Read-only. [Transferor ]: identitySet -MEDIASTATE : callMediaState +MEDIASTATE ``: callMediaState [(Any) ]: This indicates any property can be added to this object. [Audio ]: mediaState @@ -1555,13 +1555,13 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -RESULTINFO : resultInfo +RESULTINFO ``: resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. [Subcode ]: The result subcode. -SOURCE : participantInfo +SOURCE ``: participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -1607,12 +1607,12 @@ Whether to remove them from the main mixer. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. -TONEINFO : toneInfo +TONEINFO ``: toneInfo [(Any) ]: This indicates any property can be added to this object. [SequenceId ]: An incremental identifier used for ordering DTMF events. [Tone ]: tone -TRANSCRIPTION : callTranscriptionInfo +TRANSCRIPTION ``: callTranscriptionInfo [(Any) ]: This indicates any property can be added to this object. [LastModifiedDateTime ]: The state modified time in UTC. [State ]: callTranscriptionState @@ -1622,3 +1622,25 @@ TRANSCRIPTION : callTranscriptionInfo - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall) - [](https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index d47174281dfed..77905fbbfdb5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : audioRoutingGroup +BODYPARAMETER ``: audioRoutingGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -562,7 +562,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -588,3 +588,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup) - [](https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index 2f90ba84c54b2..ff7981d9fe5e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -459,7 +459,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -484,3 +484,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index 6f4ed17727a5e..4a75399127626 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : commsOperation +BODYPARAMETER ``: commsOperation [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -559,7 +559,7 @@ Max limit is 256 chars. [Subcode ]: The result subcode. [Status ]: operationStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -580,7 +580,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -RESULTINFO : resultInfo +RESULTINFO ``: resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. @@ -590,3 +590,25 @@ RESULTINFO : resultInfo ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index c3106762251a2..75d05e48cbeee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -717,7 +717,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : participant +BODYPARAMETER ``: participant [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -766,7 +766,7 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -INFO : participantInfo +INFO ``: participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -790,7 +790,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -818,7 +818,7 @@ MEDIASTREAMS : The list of media streams. [ServerMuted ]: If the media is muted by the server. [SourceId ]: The source ID. -RECORDINGINFO : recordingInfo +RECORDINGINFO ``: recordingInfo [(Any) ]: This indicates any property can be added to this object. [Initiator ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -832,11 +832,11 @@ For example, in the access reviews decisions API, this property might record the [User ]: identity [RecordingStatus ]: recordingStatus -REMOVEDSTATE : removedState +REMOVEDSTATE ``: removedState [(Any) ]: This indicates any property can be added to this object. [Reason ]: The removal reason for the participant resource. -RESTRICTEDEXPERIENCE : onlineMeetingRestricted +RESTRICTEDEXPERIENCE ``: onlineMeetingRestricted [(Any) ]: This indicates any property can be added to this object. [ContentSharingDisabled ]: onlineMeetingContentSharingDisabledReason [VideoDisabled ]: onlineMeetingVideoDisabledReason @@ -845,3 +845,25 @@ RESTRICTEDEXPERIENCE : onlineMeetingRest ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index 26be3707271f9..bcc1f027d4ee1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -521,7 +521,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY : communicationsIdentitySet +IDENTITY ``: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -540,7 +540,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index 9d61c83859396..9486ed0e73993 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -696,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : session +BODYPARAMETER ``: session [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -844,26 +844,26 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z The DateTimeOffset 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 -CALLEE : endpoint +CALLEE ``: endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -CALLER : endpoint +CALLER ``: endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -FAILUREINFO : failureInfo +FAILUREINFO ``: failureInfo [(Any) ]: This indicates any property can be added to this object. [Reason ]: Classification of why a call or portion of a call failed. [Stage ]: failureStage -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1020,3 +1020,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index 1f7fe26cffd1e..2ebb7891cab88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -1379,7 +1379,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING : audioConferencing +AUDIOCONFERENCING ``: audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1388,7 +1388,7 @@ AUDIOCONFERENCING : audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER : Represents a Microsoft online meeting. +BODYPARAMETER ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1596,7 +1596,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS : broadcastMeetingSettings +BROADCASTSETTINGS ``: broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -1613,23 +1613,23 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS : chatRestrictions +CHATRESTRICTIONS ``: chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -JOININFORMATION : itemBody +JOININFORMATION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS : joinMeetingIdSettings +JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -1640,13 +1640,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS : lobbyBypassSettings +LOBBYBYPASSSETTINGS ``: lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -1696,7 +1696,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -1735,7 +1735,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION : watermarkProtectionValues +WATERMARKPROTECTION ``: watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -1744,3 +1744,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index 2b18f86dd34bf..10d6588ad9571 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -639,7 +639,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER : meetingAttendanceReport +BODYPARAMETER ``: meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -695,7 +695,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -720,3 +720,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 3095e4013f590..d72759593b7bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -695,7 +695,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER : attendanceRecord +BODYPARAMETER ``: attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -722,7 +722,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -730,14 +730,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY : identity +IDENTITY ``: 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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -762,3 +762,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index 1a8064fda68d2..8efa424563b67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -544,7 +544,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A conversation for Teams QA online meeting. +BODYPARAMETER ``: A conversation for Teams QA online meeting. [(Any) ]: This indicates any property can be added to this object. [CreationMode ]: Indicates that the resource is in migration state and is currently being used for migration purposes. [Messages ]: The messages in a Viva Engage conversation. @@ -828,7 +828,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -ONLINEMEETING : Represents a Microsoft online meeting. +ONLINEMEETING ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1036,7 +1036,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -ORGANIZER : The Viva Engage identities. +ORGANIZER ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1049,7 +1049,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -STARTER : A Viva Engage conversation message. +STARTER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1091,3 +1091,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index 5012ce8f2a16f..e70febc175fb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -695,12 +695,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -738,7 +738,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -775,7 +775,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -788,7 +788,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -863,7 +863,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -905,3 +905,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 46a6ea8c6fd9a..28ac65cdeea81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -551,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -569,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -590,7 +590,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -607,3 +607,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index 86699ee9320a6..f5afc37152f29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -724,12 +724,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -767,7 +767,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -804,7 +804,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -817,7 +817,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -892,7 +892,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -934,3 +934,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 8eadfed38c78c..b6e133dd0a62c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -580,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -598,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -619,7 +619,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,3 +636,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index 8207134f5b9d9..79b582cd5c1b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -524,7 +524,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -542,7 +542,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -563,7 +563,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -580,3 +580,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index 70630155dc376..bf8820483fea0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -697,12 +697,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -740,7 +740,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -777,7 +777,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -790,7 +790,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -865,7 +865,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -907,3 +907,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index d1c87d5bcd99d..968b2644cc9af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -551,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -569,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -590,7 +590,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -607,3 +607,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index 21c99154c9ae5..1bfae7f57e016 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -697,7 +697,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -730,7 +730,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -751,7 +751,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -766,3 +766,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index 575ef5deb8306..ce5e55101b6f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -725,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -760,7 +760,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -781,7 +781,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -796,3 +796,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index ffa76c6192143..45bfca27fcf6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -477,7 +477,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : presence +BODYPARAMETER ``: presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -507,12 +507,12 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -OUTOFOFFICESETTINGS : outOfOfficeSettings +OUTOFOFFICESETTINGS ``: outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE : presenceStatusMessage +STATUSMESSAGE ``: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -525,7 +525,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION : userWorkLocation +WORKLOCATION ``: userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -535,3 +535,25 @@ WORKLOCATION : userWorkLocation ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index 8526b2970f72c..3ca2953f147ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -1797,7 +1797,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING : audioConferencing +AUDIOCONFERENCING ``: audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1806,7 +1806,7 @@ AUDIOCONFERENCING : audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER : Represents a Microsoft online meeting. +BODYPARAMETER ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -2014,7 +2014,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS : broadcastMeetingSettings +BROADCASTSETTINGS ``: broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -2031,18 +2031,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS : chatRestrictions +CHATRESTRICTIONS ``: chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2063,12 +2063,12 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION : itemBody +JOININFORMATION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS : joinMeetingIdSettings +JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2079,13 +2079,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS : lobbyBypassSettings +LOBBYBYPASSSETTINGS ``: lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2135,7 +2135,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2174,7 +2174,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION : watermarkProtectionValues +WATERMARKPROTECTION ``: watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2183,3 +2183,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index 2f04fe7d64e75..3b026bf749c23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -666,7 +666,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER : meetingAttendanceReport +BODYPARAMETER ``: meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -722,7 +722,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -747,3 +747,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 8b85b68df855f..c129eb4845c25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -722,7 +722,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER : attendanceRecord +BODYPARAMETER ``: attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -749,7 +749,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -757,14 +757,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY : identity +IDENTITY ``: 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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -789,3 +789,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index 90fb69282565c..f184a285ca5d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -724,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -757,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -778,7 +778,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -793,3 +793,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index 283e4e80c4a00..ae591a4858c56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -752,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -787,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -808,7 +808,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -823,3 +823,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index e54bbcbc34bf3..9290fe2fede39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index 6d582fa958b5e..bea9cf6f58462 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index 16e799cd45954..38e5fc933eb31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index e5244b1bfc2ae..7942effa552b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index c0e52ed5a159b..e2fb65316597e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index b36449b97e114..2a6ea90e08f6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -408,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -433,3 +433,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index 79e4679c0b3fe..45f64569c6ddf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall) - [](https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index a6f0bb98f0860..976725022e21b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -403,7 +403,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup) - [](https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index d9266a733edec..ad85330b68982 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index a022e7b5ffec3..714bcc3616c7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index 094592fd565c8..9743417b0618e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -417,7 +417,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant) - [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index 05dab764e91a8..317991ada98e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index cbaa667511baa..146a3da0092ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index 67fcf5d8b344f..e2baf19315095 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index 41bd1360ae74f..497aa4baf167e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index 8139d069c3f8e..45ac7cd50c4e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 94f616ad320b8..116720ac8eeb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -428,7 +428,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -453,3 +453,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index 22d27d0704336..773446213836c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -411,3 +411,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index 9ed76b6ce4737..a8d3729720752 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index 2dc79342ba4a4..b7dd5a1a16960 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -406,7 +406,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index df4de6cf64103..bac331cba5de7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index a871d5b215ee1..acf6211076a1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index d0a8ac098ae85..54bbc5a5d3c25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -450,7 +450,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -475,3 +475,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index cd4d7d95318cf..510c07fb78b03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -388,7 +388,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -413,3 +413,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index daa8ea53a9cd2..eb77b1f0d2ce4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index 88ef8afe498c9..1b16506092d7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index 23bcd1d39df2e..de76c9785ea1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 1918d44aa936f..911357ef89c7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index 4f9132a1f2f94..5b5ce14e2802c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index 5617b86b573e3..361b43623ebd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -408,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -433,3 +433,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index e2c52ff74bf2a..ffeae8148e2de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index c34295605380c..7bfd5ca935cea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -408,7 +408,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -433,3 +433,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 58b4dd28c6074..5d327149bf06e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -409,7 +409,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -434,3 +434,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index 3f48a5c5d487c..3ef70e54fa983 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index 21528cc86cf36..2572a7c870c9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index 14c54eab521c9..9541467c601eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index c4714e0ef4b1f..f2ae3fcda886a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -449,7 +449,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -474,3 +474,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index 428914c905375..dadd4b50018c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index 6af48481e69f9..0ffd83256b75d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index a5a3f4f44ab90..d413c865e524f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index 3a67f5b0f71a3..fc992c42f2c87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index 90ee9d771b056..e0e7ad571bc8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index b6dd1db5b69b1..b2585760b3f29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -429,7 +429,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -454,3 +454,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index 2457d29c70d3a..97d483acd44ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.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 [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 0d7467b1779bf..36b9e518f73a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -484,11 +484,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Role ]: screenSharingRole -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -514,3 +514,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole) - [](https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index 9ff96ae2a0d59..e70fceb7806b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -516,13 +516,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [DelayBetweenTonesMS ]: [Tones ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -547,3 +547,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 1f2e2c88025c7..61e4d2a84fb76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -523,7 +523,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -533,7 +533,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [RemindBeforeTimeInMinutesType ]: remindBeforeTimeInMinutesType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -559,3 +559,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm) - [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 628865c5e245c..7efc41ae0c8f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -524,7 +524,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -534,7 +534,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [MessageType ]: virtualAppointmentMessageType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -560,3 +560,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm) - [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 1a8fd15d9e1dd..92dc2879464f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -562,7 +562,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -572,7 +572,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [RemindBeforeTimeInMinutesType ]: remindBeforeTimeInMinutesType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -598,3 +598,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm) - [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index 63cb81417eb15..99bc95ab87ff6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -564,7 +564,7 @@ Required. The timeZone property can be set to any of the time zones currently supported by Windows. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Attendees ]: [PhoneNumber ]: The phone number of the external attendee. @@ -574,7 +574,7 @@ The timeZone property can be set to any of the time zones currently supported by Required. [MessageType ]: virtualAppointmentMessageType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -600,3 +600,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm) - [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index 4658967b44a29..8f5bdf4e3a796 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 9d41a766a9c74..58d84c8192c9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index bd3b7f59010de..120f52a90ee4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -461,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -486,3 +486,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index f429fb65d046f..b42bf11d827bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 107b5555795db..0e725d4eaac8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index 0bf3ecab74c3b..79b1430e0397e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index 9edf98ee752d4..bf98c863b8b0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -440,7 +440,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -465,3 +465,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index d4cb043d4b253..98010de43a49e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -461,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -486,3 +486,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index ef25f792d75ed..e6b0b2eaeaf8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -567,14 +567,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. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: [SessionId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -600,3 +600,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence) - [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index 3b122fb16554d..469a53cbbb1a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -514,12 +514,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -545,3 +545,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation) - [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 2599c18232009..8c48f0e790d1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -512,12 +512,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -543,3 +543,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation) - [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index 233e5777b9a5a..649cee3869532 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -486,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [StatusMessage ]: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. @@ -501,7 +501,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -522,7 +522,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -STATUSMESSAGE : presenceStatusMessage +STATUSMESSAGE ``: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -540,3 +540,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage) - [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index 8c9342c323327..cdcce39f6ced8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -547,13 +547,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence) - [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index 889f3901d4166..fc611139e529e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -461,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -486,3 +486,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index 6deac7026af0d..9d31709b0ee48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -461,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -486,3 +486,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index da2ab05d7d0d0..f12a4531293b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -461,7 +461,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -486,3 +486,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 682e3d587cfda..671fece8064a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -482,7 +482,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -507,3 +507,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index 70a607419bf53..a54143df7548c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -571,14 +571,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. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: [SessionId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -604,3 +604,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence) - [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index b70065af41a3a..53750f30fc2bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -518,12 +518,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -549,3 +549,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation) - [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index 6358bf592f7a1..5b014e4067059 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -516,12 +516,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -547,3 +547,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation) - [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 6a48bb9d2924f..7c9e9c834ddb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -512,7 +512,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [StatusMessage ]: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. @@ -527,7 +527,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -548,7 +548,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -STATUSMESSAGE : presenceStatusMessage +STATUSMESSAGE ``: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -566,3 +566,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage) - [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index d9f7d7b4db520..d81ecd3cd252a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -551,13 +551,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Activity ]: [Availability ]: [ExpirationDuration ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -583,3 +583,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence) - [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index 614fcc924fa8e..9c8435e90942f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -525,13 +525,13 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [CustomPrompt ]: prompt [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic) - [](https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index 245aeb7b8befd..632b5ac0fd8a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -471,11 +471,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -501,3 +501,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing) - [](https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index 1e017313d0d89..c30a1ceb9d60f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -491,11 +491,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -521,3 +521,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic) - [](https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 371ff940987d8..93b417c43acff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -521,7 +521,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : adhocCall +BODYPARAMETER ``: adhocCall [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -583,7 +583,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -676,3 +676,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index ff26718f4a35a..cce72ab071d0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -724,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -757,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -778,7 +778,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -793,3 +793,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index c735a41877c12..7e38a0fc65ac1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -752,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -787,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -808,7 +808,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -823,3 +823,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 1947536fb56d6..151450d4a1c9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : audioRoutingGroup +BODYPARAMETER ``: audioRoutingGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -591,7 +591,7 @@ Read-only. [RoutingMode ]: routingMode [Sources ]: List of source participant ids. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -617,3 +617,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup) - [](https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 6367260716bd2..2cf39515e3a2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -487,7 +487,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -512,3 +512,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index 49f711aeff908..194901d005c29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -575,7 +575,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : commsOperation +BODYPARAMETER ``: commsOperation [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -588,7 +588,7 @@ Max limit is 256 chars. [Subcode ]: The result subcode. [Status ]: operationStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -609,7 +609,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -RESULTINFO : resultInfo +RESULTINFO ``: resultInfo [(Any) ]: This indicates any property can be added to this object. [Code ]: The result code. [Message ]: The message. @@ -619,3 +619,25 @@ RESULTINFO : resultInfo ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index f1b5339e6ad73..047fdd7c95336 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -746,7 +746,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : participant +BODYPARAMETER ``: participant [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -795,7 +795,7 @@ Read-only. [VideoDisabled ]: onlineMeetingVideoDisabledReason [RosterSequenceNumber ]: Indicates the roster sequence number in which the participant was last updated. -INFO : participantInfo +INFO ``: participantInfo [(Any) ]: This indicates any property can be added to this object. [CountryCode ]: The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only. @@ -819,7 +819,7 @@ This can be a country, a continent, or a larger geographic region. This doesn't change based on the participant's current physical location. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -847,7 +847,7 @@ MEDIASTREAMS : The list of media streams. [ServerMuted ]: If the media is muted by the server. [SourceId ]: The source ID. -RECORDINGINFO : recordingInfo +RECORDINGINFO ``: recordingInfo [(Any) ]: This indicates any property can be added to this object. [Initiator ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -861,11 +861,11 @@ For example, in the access reviews decisions API, this property might record the [User ]: identity [RecordingStatus ]: recordingStatus -REMOVEDSTATE : removedState +REMOVEDSTATE ``: removedState [(Any) ]: This indicates any property can be added to this object. [Reason ]: The removal reason for the participant resource. -RESTRICTEDEXPERIENCE : onlineMeetingRestricted +RESTRICTEDEXPERIENCE ``: onlineMeetingRestricted [(Any) ]: This indicates any property can be added to this object. [ContentSharingDisabled ]: onlineMeetingContentSharingDisabledReason [VideoDisabled ]: onlineMeetingVideoDisabledReason @@ -874,3 +874,25 @@ RESTRICTEDEXPERIENCE : onlineMeetingRest ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index 4368203eff1ec..3571aff4d97f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -521,7 +521,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY : communicationsIdentitySet +IDENTITY ``: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -540,7 +540,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index a882e9ff72ade..42967c273119a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -548,7 +548,7 @@ For information on hash tables, run Get-Help about_Hash_Tables. ADMINISTRATIVEUNITINFOS : List of administrativeUnitInfo objects for the call participant. [Id ]: Unique identifier for the administrative unit. -IDENTITY : communicationsIdentitySet +IDENTITY ``: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -567,7 +567,7 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -592,3 +592,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index 2ad1fb4a28033..7fd49b92feb29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -723,7 +723,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : session +BODYPARAMETER ``: session [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -871,26 +871,26 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z The DateTimeOffset 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 -CALLEE : endpoint +CALLEE ``: endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -CALLER : endpoint +CALLER ``: endpoint [(Any) ]: This indicates any property can be added to this object. [UserAgent ]: userAgent [(Any) ]: This indicates any property can be added to this object. [ApplicationVersion ]: Identifies the version of application software used by this endpoint. [HeaderValue ]: User-agent header value reported by this endpoint. -FAILUREINFO : failureInfo +FAILUREINFO ``: failureInfo [(Any) ]: This indicates any property can be added to this object. [Reason ]: Classification of why a call or portion of a call failed. [Stage ]: failureStage -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1047,3 +1047,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 5c3c59b2acdfd..4e19c918fc1ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -494,12 +494,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ClientContext ]: [Status ]: recordingStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus) - [](https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index b9928fc60602e..890ae8996b9f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -1761,7 +1761,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING : audioConferencing +AUDIOCONFERENCING ``: audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1770,7 +1770,7 @@ AUDIOCONFERENCING : audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER : Represents a Microsoft online meeting. +BODYPARAMETER ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1978,7 +1978,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS : broadcastMeetingSettings +BROADCASTSETTINGS ``: broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -1995,18 +1995,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS : chatRestrictions +CHATRESTRICTIONS ``: chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2027,12 +2027,12 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION : itemBody +JOININFORMATION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS : joinMeetingIdSettings +JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2043,13 +2043,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS : lobbyBypassSettings +LOBBYBYPASSSETTINGS ``: lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2099,7 +2099,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2138,7 +2138,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION : watermarkProtectionValues +WATERMARKPROTECTION ``: watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2147,3 +2147,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 088abbff990fc..6065f0480cd1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -666,7 +666,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER : meetingAttendanceReport +BODYPARAMETER ``: meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -722,7 +722,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -747,3 +747,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 50d16a2b3258a..a67a8e37b4e36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -724,7 +724,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER : attendanceRecord +BODYPARAMETER ``: attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -751,7 +751,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -759,14 +759,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY : identity +IDENTITY ``: 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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -791,3 +791,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index 15b756ad4c293..ec8148fca011b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -696,7 +696,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A conversation for Teams QA online meeting. +BODYPARAMETER ``: A conversation for Teams QA online meeting. [(Any) ]: This indicates any property can be added to this object. [CreationMode ]: Indicates that the resource is in migration state and is currently being used for migration purposes. [Messages ]: The messages in a Viva Engage conversation. @@ -943,7 +943,7 @@ Read-only. The online meeting ID links the conversation to a specific meeting instance. [Organizer ]: The Viva Engage identities. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -1001,7 +1001,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -ONLINEMEETING : Represents a Microsoft online meeting. +ONLINEMEETING ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -1209,7 +1209,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -ORGANIZER : The Viva Engage identities. +ORGANIZER ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1222,7 +1222,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -STARTER : A Viva Engage conversation message. +STARTER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1264,3 +1264,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index ddbd028c0e2f0..06a3159088d61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -724,12 +724,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -767,7 +767,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -804,7 +804,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -817,7 +817,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -892,7 +892,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -934,3 +934,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index da1dd620eec9a..edc2746be87f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -580,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -598,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -619,7 +619,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,3 +636,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index a0f18099f75cf..333b05b872756 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -755,12 +755,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -798,7 +798,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -835,7 +835,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -848,7 +848,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -923,7 +923,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -965,3 +965,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 116d1d7711f90..af61b98c8ec2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -607,7 +607,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -625,7 +625,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -646,7 +646,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -663,3 +663,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index 87e1be14c0eef..901584f85c88d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -697,12 +697,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -740,7 +740,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -777,7 +777,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -790,7 +790,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -865,7 +865,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -907,3 +907,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index 0b81003c81031..58c10eee2bcb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -551,7 +551,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -569,7 +569,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -590,7 +590,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -607,3 +607,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index ecca93f938767..0183e0630d922 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -726,12 +726,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : A Viva Engage conversation message. +BODYPARAMETER ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -769,7 +769,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -CONVERSATION : Represents a conversation in Viva Engage. +CONVERSATION ``: Represents a conversation in Viva Engage. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -806,7 +806,7 @@ Read-only. [Starter ]: A Viva Engage conversation message. [StarterId ]: The unique ID of the first message in a Viva Engage conversation. -FROM : The Viva Engage identities. +FROM ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -819,7 +819,7 @@ For example, in the access reviews decisions API, this property might record the [Audience ]: identity [Group ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -894,7 +894,7 @@ Read-only. [ReplyTo ]: A Viva Engage conversation message. [ReplyToId ]: The ID of the parent message to which this message is a reply, if applicable. -REPLYTO : A Viva Engage conversation message. +REPLYTO ``: A Viva Engage conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -936,3 +936,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 56fb064a4c990..52d99d1d22c8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -580,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : A reaction to a conversation message. +BODYPARAMETER ``: A reaction to a conversation message. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -598,7 +598,7 @@ For example, in the access reviews decisions API, this property might record the [Group ]: identity [ReactionType ]: Types of reactions to conversation messages. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -619,7 +619,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -REACTIONBY : The Viva Engage identities. +REACTIONBY ``: The Viva Engage identities. [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,3 +636,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index 1b35117843033..317b6dbc33224 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -724,7 +724,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -757,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -778,7 +778,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -793,3 +793,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index 64b6889529bf0..9ec7e70b3d9b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -752,7 +752,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -787,7 +787,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -808,7 +808,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -823,3 +823,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index f8b268b744936..fd82e2c7ca21a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -606,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : presence +BODYPARAMETER ``: presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -636,7 +636,7 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -657,12 +657,12 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -OUTOFOFFICESETTINGS : outOfOfficeSettings +OUTOFOFFICESETTINGS ``: outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE : presenceStatusMessage +STATUSMESSAGE ``: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -675,7 +675,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION : userWorkLocation +WORKLOCATION ``: userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -685,3 +685,25 @@ WORKLOCATION : userWorkLocation ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index a04ac9b01b37f..3aee34a843c04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -1807,7 +1807,7 @@ Read-only. [TotalParticipantCount ]: Total number of participants. Read-only. -AUDIOCONFERENCING : audioConferencing +AUDIOCONFERENCING ``: audioConferencing [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The conference id of the online meeting. [DialinUrl ]: A URL to the externally-accessible web page that contains dial-in information. @@ -1816,7 +1816,7 @@ AUDIOCONFERENCING : audioConferencing [TollNumber ]: The toll number that connects to the Audio Conference Provider. [TollNumbers ]: List of toll numbers that are displayed in the meeting invite. -BODYPARAMETER : Represents a Microsoft online meeting. +BODYPARAMETER ``: Represents a Microsoft online meeting. [(Any) ]: This indicates any property can be added to this object. [AllowAttendeeToEnableCamera ]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic ]: Indicates whether attendees can turn on their microphone. @@ -2024,7 +2024,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -BROADCASTSETTINGS : broadcastMeetingSettings +BROADCASTSETTINGS ``: broadcastMeetingSettings [(Any) ]: This indicates any property can be added to this object. [AllowedAudience ]: broadcastMeetingAudience [Captions ]: broadcastMeetingCaptionSettings @@ -2041,18 +2041,18 @@ Default value is false. [IsVideoOnDemandEnabled ]: Indicates whether video on demand is enabled for this Teams live event. Default value is false. -CHATINFO : chatInfo +CHATINFO ``: chatInfo [(Any) ]: This indicates any property can be added to this object. [MessageId ]: The unique identifier of a message in a Microsoft Teams channel. [ReplyChainMessageId ]: The ID of the reply message. [ThreadId ]: The unique identifier for a thread in Microsoft Teams. -CHATRESTRICTIONS : chatRestrictions +CHATRESTRICTIONS ``: chatRestrictions [(Any) ]: This indicates any property can be added to this object. [AllowTextOnly ]: Indicates whether only text is allowed in the meeting chat. Optional. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -2073,12 +2073,12 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -JOININFORMATION : itemBody +JOININFORMATION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -JOINMEETINGIDSETTINGS : joinMeetingIdSettings +JOINMEETINGIDSETTINGS ``: joinMeetingIdSettings [(Any) ]: This indicates any property can be added to this object. [IsPasscodeRequired ]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. @@ -2089,13 +2089,13 @@ Read-only. Optional. Read-only. -LOBBYBYPASSSETTINGS : lobbyBypassSettings +LOBBYBYPASSSETTINGS ``: lobbyBypassSettings [(Any) ]: This indicates any property can be added to this object. [IsDialInBypassEnabled ]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope ]: lobbyBypassScope -PARTICIPANTS : meetingParticipants +PARTICIPANTS ``: meetingParticipants [(Any) ]: This indicates any property can be added to this object. [Attendees ]: Information about the meeting attendees. [Identity ]: identitySet @@ -2145,7 +2145,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -SENSITIVITYLABELASSIGNMENT : onlineMeetingSensitivityLabelAssignment +SENSITIVITYLABELASSIGNMENT ``: onlineMeetingSensitivityLabelAssignment [(Any) ]: This indicates any property can be added to this object. [SensitivityLabelId ]: The ID of the sensitivity label that is applied to the Teams meeting. @@ -2184,7 +2184,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -WATERMARKPROTECTION : watermarkProtectionValues +WATERMARKPROTECTION ``: watermarkProtectionValues [(Any) ]: This indicates any property can be added to this object. [IsEnabledForContentSharing ]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo ]: Indicates whether to apply a watermark to everyone's video feed. @@ -2193,3 +2193,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index 01b01483054b0..5e3d9eb41e925 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -693,7 +693,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -BODYPARAMETER : meetingAttendanceReport +BODYPARAMETER ``: meetingAttendanceReport [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -749,7 +749,7 @@ This association bundles all the information (both supported and not supported i Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -774,3 +774,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index ae12f817876c0..f8ee76be0d785 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -751,7 +751,7 @@ ATTENDANCEINTERVALS : List of time periods [JoinDateTime ]: The time the attendee joined in UTC. [LeaveDateTime ]: The time the attendee left in UTC. -BODYPARAMETER : attendanceRecord +BODYPARAMETER ``: attendanceRecord [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -778,7 +778,7 @@ For example, in the access reviews decisions API, this property might record the The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds ]: Total duration of the attendances in seconds. -EXTERNALREGISTRATIONINFORMATION : virtualEventExternalRegistrationInformation +EXTERNALREGISTRATIONINFORMATION ``: virtualEventExternalRegistrationInformation [(Any) ]: This indicates any property can be added to this object. [Referrer ]: A URL or string that represents the location from which the registrant registered. Optional. @@ -786,14 +786,14 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -IDENTITY : identity +IDENTITY ``: 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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -818,3 +818,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index f1f5dd62144b0..be5be9f66cd9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -751,7 +751,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callRecording +BODYPARAMETER ``: callRecording [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -784,7 +784,7 @@ For example, in the access reviews decisions API, this property might record the [RecordingContentUrl ]: The URL that can be used to access the content of the recording. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -805,7 +805,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -820,3 +820,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index d9177f1034c7d..3e2b47c15688b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -779,7 +779,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : callTranscript +BODYPARAMETER ``: callTranscript [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -814,7 +814,7 @@ Read-only. [TranscriptContentUrl ]: The URL that can be used to access the content of the transcript. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -835,7 +835,7 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -MEETINGORGANIZER : identitySet +MEETINGORGANIZER ``: 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. @@ -850,3 +850,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 69acc827ca318..5e7f41ac8025d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -606,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : presence +BODYPARAMETER ``: presence [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -636,7 +636,7 @@ See below for more possible values. [Source ]: workLocationSource [WorkLocationType ]: workLocationType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AdhocCallId ]: The unique identifier of adhocCall [AttendanceRecordId ]: The unique identifier of attendanceRecord [AudioRoutingGroupId ]: The unique identifier of audioRoutingGroup @@ -657,12 +657,12 @@ INPUTOBJECT : Identity Parameter [SessionId ]: The unique identifier of session [UserId ]: The unique identifier of user -OUTOFOFFICESETTINGS : outOfOfficeSettings +OUTOFOFFICESETTINGS ``: outOfOfficeSettings [(Any) ]: This indicates any property can be added to this object. [IsOutOfOffice ]: If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false. [Message ]: The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office). -STATUSMESSAGE : presenceStatusMessage +STATUSMESSAGE ``: presenceStatusMessage [(Any) ]: This indicates any property can be added to this object. [ExpiryDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -675,7 +675,7 @@ See below for more possible values. [ContentType ]: bodyType [PublishedDateTime ]: Time in which the status message was published.Read-only.publishedDateTime isn't available when you request the presence of another user. -WORKLOCATION : userWorkLocation +WORKLOCATION ``: userWorkLocation [(Any) ]: This indicates any property can be added to this object. [PlaceId ]: Identifier of the place, if applicable. [Source ]: workLocationSource @@ -685,3 +685,25 @@ WORKLOCATION : userWorkLocation ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence) + + + + + + + + + + + + + + + + + + + + + + From 3d4933af1b1fd50b07dfc326d19e9ae36f00f364 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:40 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Add-MgCommunicationCallLargeGalleryView.md | 8 ++++++++ .../Clear-MgUserPresence.md | 8 ++++++++ .../Clear-MgUserPresenceUserPreferredPresence.md | 8 ++++++++ .../Get-MgCommunicationCall.md | 8 ++++++++ .../Get-MgCommunicationCallAudioRoutingGroup.md | 8 ++++++++ .../Get-MgCommunicationCallAudioRoutingGroupCount.md | 8 ++++++++ .../Get-MgCommunicationCallContentSharingSession.md | 8 ++++++++ .../Get-MgCommunicationCallContentSharingSessionCount.md | 8 ++++++++ .../Get-MgCommunicationCallParticipant.md | 8 ++++++++ .../Get-MgCommunicationCallParticipantCount.md | 8 ++++++++ .../Get-MgCommunicationOnlineMeetingCount.md | 8 ++++++++ .../Get-MgCommunicationPresenceByUserId.md | 8 ++++++++ .../Get-MgCommunicationPresenceCount.md | 8 ++++++++ .../Get-MgUserOnlineMeeting.md | 8 ++++++++ .../Get-MgUserOnlineMeetingAttendanceReport.md | 8 ++++++++ ...rOnlineMeetingAttendanceReportAttendanceRecordCount.md | 8 ++++++++ .../Get-MgUserOnlineMeetingAttendanceReportCount.md | 8 ++++++++ .../Get-MgUserOnlineMeetingAttendeeReport.md | 8 ++++++++ .../Get-MgUserOnlineMeetingCount.md | 8 ++++++++ .../Get-MgUserOnlineMeetingRecording.md | 8 ++++++++ .../Get-MgUserOnlineMeetingRecordingContent.md | 8 ++++++++ .../Get-MgUserOnlineMeetingRecordingCount.md | 8 ++++++++ .../Get-MgUserOnlineMeetingRecordingDelta.md | 8 ++++++++ .../Get-MgUserOnlineMeetingTranscript.md | 8 ++++++++ .../Get-MgUserOnlineMeetingTranscriptContent.md | 8 ++++++++ .../Get-MgUserOnlineMeetingTranscriptCount.md | 8 ++++++++ .../Get-MgUserOnlineMeetingTranscriptDelta.md | 8 ++++++++ .../Get-MgUserOnlineMeetingTranscriptMetadataContent.md | 8 ++++++++ ...Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md | 8 ++++++++ .../Get-MgUserPresence.md | 8 ++++++++ .../Invoke-MgAnswerCommunicationCall.md | 8 ++++++++ .../Invoke-MgKeepCommunicationCallAlive.md | 8 ++++++++ .../Invoke-MgMuteCommunicationCall.md | 8 ++++++++ .../Invoke-MgMuteCommunicationCallParticipant.md | 8 ++++++++ .../Invoke-MgPlayCommunicationCallPrompt.md | 8 ++++++++ .../Invoke-MgUnmuteCommunicationCall.md | 8 ++++++++ .../New-MgCommunicationCall.md | 8 ++++++++ .../New-MgCommunicationCallAudioRoutingGroup.md | 8 ++++++++ .../New-MgUserOnlineMeeting.md | 8 ++++++++ .../Remove-MgCommunicationCall.md | 8 ++++++++ .../Remove-MgCommunicationCallAudioRoutingGroup.md | 8 ++++++++ .../Remove-MgCommunicationCallParticipant.md | 8 ++++++++ .../Remove-MgUserOnlineMeeting.md | 8 ++++++++ ...end-MgUserOnlineMeetingVirtualAppointmentReminderSm.md | 8 ++++++++ .../Send-MgUserOnlineMeetingVirtualAppointmentSm.md | 8 ++++++++ .../Set-MgUserPresence.md | 8 ++++++++ .../Set-MgUserPresenceStatusMessage.md | 8 ++++++++ .../Set-MgUserPresenceUserPreferredPresence.md | 8 ++++++++ .../Start-MgCommunicationCallParticipantHoldMusic.md | 8 ++++++++ .../Stop-MgCommunicationCallMediaProcessing.md | 8 ++++++++ .../Stop-MgCommunicationCallParticipantHoldMusic.md | 8 ++++++++ .../Update-MgCommunicationCallAudioRoutingGroup.md | 8 ++++++++ .../Update-MgCommunicationCallRecordingStatus.md | 8 ++++++++ .../Update-MgUserOnlineMeeting.md | 8 ++++++++ 54 files changed, 432 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 8273c9ce30a48..78d99d4f6fc22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index d9103b37fa7df..dddbbdf3b7c65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -68,6 +68,14 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index 825ad155cdc70..c87b8f4e21cb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Clear the preferred availability and activity status for a user. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index ce1a676994889..ae4e441f157e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a call object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 7b4e276df45d2..297833518ad1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of an audioRoutingGroup object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index a4ab9e59cc171..308585a8ff1f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 3f0c662b0fa6b..31d0d7a2d52f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties of a contentSharingSession object in a call. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index c9908c21fd02a..18af89e96f1af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index e75a6296058c8..9ef5aef402a32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Retrieve the properties and relationships of a participant object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 09b71e5ca938c..7c176f7c9af09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index 296c417b44e37..5f445a761ea7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.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) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 72393f8235358..66f295c7f39ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the presence information for multiple users. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.Read.All, Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md index 68704adb0f8ab..6bf5e999152f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.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) | Presence.Read, Presence.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.Read.All, Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index 5364c2f815d44..7fe4253591c9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -98,6 +98,14 @@ This cmdlet has the following aliases, Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index 34c0e16a29b97..11f0b22644b7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, The attendance reports of an online meeting. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 763bbaae71c7b..e5d33b4b4e973 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index c075c7785c3ca..bf41835f90b3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index 3181424685af5..b26b28b836988 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingArtifact.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingArtifact.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index 209eb21be9826..710656e15d783 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.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) | OnlineMeetings.Read, OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index da9eefdfdcb1f..b9e6135a70506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -87,6 +87,14 @@ This API supports the retrieval of call recordings from all meeting types except For a recording, this API returns the metadata of the single recording associated with the online meeting or an ad hoc call. For the content of a recording, this API returns the stream of bytes associated with the recording. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 5ec1649979713..70d67c34e2492 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, The content of the recording. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index 35e7d71e68825..5ca53286c95f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.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) | OnlineMeetingRecording.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index 8716f0567c816..c48c20d0debde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Invoke function delta +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingRecording.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 6c90463af47f3..ffd4411735bc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -87,6 +87,14 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index b43fe196dc620..5748dfd234611 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -51,6 +51,14 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index 27907cf7039ad..9ee5ac31aed35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index cc2d8e97bb6cf..5e5e4763494e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Invoke function delta +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index a17b422ad48e3..fde3e98723dfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -51,6 +51,14 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetingTranscript.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index 654ebc97548fe..ef2fff439ad54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -48,6 +48,14 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualAppointment.Read, OnlineMeetings.Read, OnlineMeetings.ReadWrite, VirtualAppointment.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualAppointment.Read.All, VirtualAppointment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index 6ff3b5f4588e2..9c568d5def322 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get a user's presence information. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.Read, Presence.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.Read.All, Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index d26713df8587e..7f03f4c948d6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -78,6 +78,14 @@ The bot is expected to answer, reject, or redirect the call before the call time The current timeout value is 15 seconds for regular scenarios and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios: +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index c5aaf972df7bd..65d6299882506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -56,6 +56,14 @@ Make sure that these requests are successful to prevent the call from timing out Attempting to send a request to a call that has already ended will result in a 404 Not-Found error. The resources related to the call should be cleaned up on the application side. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 205081ed9f6a9..9c89aaa0634e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -69,6 +69,14 @@ Allows the application to mute itself. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more details about how to handle mute operations, see muteParticipantOperation +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index fa4cd368dacbe..3d3005f4f5efe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -70,6 +70,14 @@ Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index f7eb0c44c312d..518576a032aca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Play a prompt in the call. For more information about how to handle operations, see commsOperation +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 0f1d702493519..41beed516bdb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -69,6 +69,14 @@ Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index ffc344d4a1b9d..d7ebf8ee308ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -59,6 +59,14 @@ Create call enables your bot to create a new outgoing peer-to-peer or group call You need to register the calling bot and go through the list of permissions needed. This API supports the following PSTN scenarios: +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCalls.Chat, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 77905fbbfdb5b..4d3f9804d01ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Create a new audioRoutingGroup. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index 3ca2953f147ef..23fa591a403a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -104,6 +104,14 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetings for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index 45f64569c6ddf..c7e6a526d733a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index 976725022e21b..3215234f65c21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete the specified audioRoutingGroup. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index 9743417b0618e..a06e4c7c03108 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -52,6 +52,14 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index 2572a7c870c9e..e32fde4d66dd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetings for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 92dc2879464f1..33d9d14a4f9e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualAppointmentNotification.Send, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualAppointmentNotification.Send, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index 99bc95ab87ff6..2f2a59cfd5fbf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -72,6 +72,14 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualAppointmentNotification.Send, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualAppointmentNotification.Send, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index a54143df7548c..3595c23ae7eed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 7c9e9c834ddb6..41e0550f1865b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Set a presence status message for a user. An optional expiration date and time can be supplied. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index d81ecd3cd252a..7c94d980c1d55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -76,6 +76,14 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Presence.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Presence.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index 9c8435e90942f..e5207eed71df3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Put a participant on hold and play music in the background. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index 632b5ac0fd8a9..39967e8c6eccd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -73,6 +73,14 @@ The cancelMediaProcessing method cancels any operation that is in-process as wel For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a subscribeToTone operation because it operates independent of any operation queue. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.Initiate.All, Calls.AccessMedia.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index c30a1ceb9d60f..bf71d09e1de16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Reincorporate a participant previously put on hold to the call. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 151450d4a1c9d..36a89354c442b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Modify sources and receivers of an audioRoutingGroup. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 4e19c918fc1ab..42b0a274a0e1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calls.AccessMedia.All, Calls.JoinGroupCall.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index 3aee34a843c04..8922d88fa1fd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -106,6 +106,14 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetings in users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | OnlineMeetings.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | OnlineMeetings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 From 4460710b6b911b8470c9ce1cd1aec9a58a2f9575 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:32 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Add-MgCommunicationCallLargeGalleryView.md | 3 +++ .../Clear-MgCommunicationPresence.md | 3 +++ .../Clear-MgCommunicationPresenceAutomaticLocation.md | 3 +++ .../Clear-MgCommunicationPresenceLocation.md | 3 +++ .../Clear-MgCommunicationPresenceUserPreferredPresence.md | 3 +++ .../Clear-MgUserPresence.md | 3 +++ .../Clear-MgUserPresenceAutomaticLocation.md | 3 +++ .../Clear-MgUserPresenceLocation.md | 3 +++ .../Clear-MgUserPresenceUserPreferredPresence.md | 3 +++ .../Get-MgCommunicationAdhocCall.md | 3 +++ .../Get-MgCommunicationAdhocCallCount.md | 3 +++ .../Get-MgCommunicationAdhocCallRecording.md | 3 +++ .../Get-MgCommunicationAdhocCallRecordingContent.md | 3 +++ .../Get-MgCommunicationAdhocCallRecordingCount.md | 3 +++ .../Get-MgCommunicationAdhocCallRecordingDelta.md | 3 +++ .../Get-MgCommunicationAdhocCallTranscript.md | 3 +++ .../Get-MgCommunicationAdhocCallTranscriptContent.md | 3 +++ .../Get-MgCommunicationAdhocCallTranscriptCount.md | 3 +++ .../Get-MgCommunicationAdhocCallTranscriptDelta.md | 3 +++ .../Get-MgCommunicationAdhocCallTranscriptMetadataContent.md | 3 +++ .../Get-MgCommunicationCall.md | 3 +++ .../Get-MgCommunicationCallAudioRoutingGroup.md | 3 +++ .../Get-MgCommunicationCallAudioRoutingGroupCount.md | 3 +++ .../Get-MgCommunicationCallContentSharingSession.md | 3 +++ .../Get-MgCommunicationCallContentSharingSessionCount.md | 3 +++ .../Get-MgCommunicationCallCount.md | 3 +++ .../Get-MgCommunicationCallOperation.md | 3 +++ .../Get-MgCommunicationCallOperationCount.md | 3 +++ .../Get-MgCommunicationCallParticipant.md | 3 +++ .../Get-MgCommunicationCallParticipantCount.md | 3 +++ .../Get-MgCommunicationCallRecord.md | 3 +++ .../Get-MgCommunicationCallRecordCount.md | 3 +++ .../Get-MgCommunicationCallRecordOrganizerV2.md | 3 +++ .../Get-MgCommunicationCallRecordParticipant.md | 3 +++ .../Get-MgCommunicationCallRecordParticipantV2.md | 3 +++ .../Get-MgCommunicationCallRecordSession.md | 3 +++ .../Get-MgCommunicationCallRecordSessionCount.md | 3 +++ .../Get-MgCommunicationCallRecordSessionSegmentCount.md | 3 +++ .../Get-MgCommunicationOnlineMeeting.md | 3 +++ .../Get-MgCommunicationOnlineMeetingAttendanceReport.md | 3 +++ ...mmunicationOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ ...cationOnlineMeetingAttendanceReportAttendanceRecordCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingAttendanceReportCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingAttendeeReport.md | 3 +++ .../Get-MgCommunicationOnlineMeetingConversation.md | 3 +++ .../Get-MgCommunicationOnlineMeetingConversationCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingConversationMessage.md | 3 +++ ...ommunicationOnlineMeetingConversationMessageConversation.md | 3 +++ ...Get-MgCommunicationOnlineMeetingConversationMessageCount.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationMessageReaction.md | 3 +++ ...mmunicationOnlineMeetingConversationMessageReactionCount.md | 3 +++ ...Get-MgCommunicationOnlineMeetingConversationMessageReply.md | 3 +++ ...icationOnlineMeetingConversationMessageReplyConversation.md | 3 +++ ...gCommunicationOnlineMeetingConversationMessageReplyCount.md | 3 +++ ...mmunicationOnlineMeetingConversationMessageReplyReaction.md | 3 +++ ...cationOnlineMeetingConversationMessageReplyReactionCount.md | 3 +++ ...t-MgCommunicationOnlineMeetingConversationMessageReplyTo.md | 3 +++ ...et-MgCommunicationOnlineMeetingConversationOnlineMeeting.md | 3 +++ ...tionOnlineMeetingConversationOnlineMeetingAttendeeReport.md | 3 +++ .../Get-MgCommunicationOnlineMeetingConversationStarter.md | 3 +++ ...ommunicationOnlineMeetingConversationStarterConversation.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationStarterReaction.md | 3 +++ ...mmunicationOnlineMeetingConversationStarterReactionCount.md | 3 +++ ...Get-MgCommunicationOnlineMeetingConversationStarterReply.md | 3 +++ ...icationOnlineMeetingConversationStarterReplyConversation.md | 3 +++ ...gCommunicationOnlineMeetingConversationStarterReplyCount.md | 3 +++ ...mmunicationOnlineMeetingConversationStarterReplyReaction.md | 3 +++ ...cationOnlineMeetingConversationStarterReplyReactionCount.md | 3 +++ ...t-MgCommunicationOnlineMeetingConversationStarterReplyTo.md | 3 +++ .../Get-MgCommunicationOnlineMeetingCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingMessage.md | 3 +++ .../Get-MgCommunicationOnlineMeetingRecording.md | 3 +++ .../Get-MgCommunicationOnlineMeetingRecordingContent.md | 3 +++ .../Get-MgCommunicationOnlineMeetingRecordingCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingRecordingDelta.md | 3 +++ .../Get-MgCommunicationOnlineMeetingTranscript.md | 3 +++ .../Get-MgCommunicationOnlineMeetingTranscriptContent.md | 3 +++ .../Get-MgCommunicationOnlineMeetingTranscriptCount.md | 3 +++ .../Get-MgCommunicationOnlineMeetingTranscriptDelta.md | 3 +++ ...et-MgCommunicationOnlineMeetingTranscriptMetadataContent.md | 3 +++ ...MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md | 3 +++ .../Get-MgCommunicationPresence.md | 3 +++ .../Get-MgCommunicationPresenceByUserId.md | 3 +++ .../Get-MgCommunicationPresenceCount.md | 3 +++ .../Get-MgUserOnlineMeeting.md | 3 +++ .../Get-MgUserOnlineMeetingAttendanceReport.md | 3 +++ .../Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ ...MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md | 3 +++ .../Get-MgUserOnlineMeetingAttendanceReportCount.md | 3 +++ .../Get-MgUserOnlineMeetingAttendeeReport.md | 3 +++ .../Get-MgUserOnlineMeetingCount.md | 3 +++ .../Get-MgUserOnlineMeetingRecording.md | 3 +++ .../Get-MgUserOnlineMeetingRecordingContent.md | 3 +++ .../Get-MgUserOnlineMeetingRecordingCount.md | 3 +++ .../Get-MgUserOnlineMeetingRecordingDelta.md | 3 +++ .../Get-MgUserOnlineMeetingTranscript.md | 3 +++ .../Get-MgUserOnlineMeetingTranscriptContent.md | 3 +++ .../Get-MgUserOnlineMeetingTranscriptCount.md | 3 +++ .../Get-MgUserOnlineMeetingTranscriptDelta.md | 3 +++ .../Get-MgUserOnlineMeetingTranscriptMetadataContent.md | 3 +++ .../Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md | 3 +++ .../Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md | 3 +++ .../Invoke-MgAnswerCommunicationCall.md | 3 +++ .../Invoke-MgCreateOrGetCommunicationOnlineMeeting.md | 3 +++ .../Invoke-MgInviteCommunicationCallParticipant.md | 3 +++ .../Invoke-MgKeepCommunicationCallAlive.md | 3 +++ ...Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md | 3 +++ .../Invoke-MgMuteCommunicationCall.md | 3 +++ .../Invoke-MgMuteCommunicationCallParticipant.md | 3 +++ .../Invoke-MgPlayCommunicationCallPrompt.md | 3 +++ .../Invoke-MgRecordCommunicationCallResponse.md | 3 +++ .../Invoke-MgRedirectCommunicationCall.md | 3 +++ .../Invoke-MgRejectCommunicationCall.md | 3 +++ .../Invoke-MgSubscribeCommunicationCallToTone.md | 3 +++ .../Invoke-MgUnmuteCommunicationCall.md | 3 +++ .../Move-MgCommunicationCall.md | 3 +++ .../New-MgCommunicationAdhocCall.md | 3 +++ .../New-MgCommunicationAdhocCallRecording.md | 3 +++ .../New-MgCommunicationAdhocCallTranscript.md | 3 +++ .../New-MgCommunicationCall.md | 3 +++ .../New-MgCommunicationCallAudioRoutingGroup.md | 3 +++ .../New-MgCommunicationCallContentSharingSession.md | 3 +++ .../New-MgCommunicationCallOperation.md | 3 +++ .../New-MgCommunicationCallParticipant.md | 3 +++ .../New-MgCommunicationCallRecordParticipantV2.md | 3 +++ .../New-MgCommunicationCallRecordSession.md | 3 +++ .../New-MgCommunicationOnlineMeeting.md | 3 +++ .../New-MgCommunicationOnlineMeetingAttendanceReport.md | 3 +++ ...mmunicationOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../New-MgCommunicationOnlineMeetingConversation.md | 3 +++ .../New-MgCommunicationOnlineMeetingConversationMessage.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationMessageReaction.md | 3 +++ ...New-MgCommunicationOnlineMeetingConversationMessageReply.md | 3 +++ ...mmunicationOnlineMeetingConversationMessageReplyReaction.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationStarterReaction.md | 3 +++ ...New-MgCommunicationOnlineMeetingConversationStarterReply.md | 3 +++ ...mmunicationOnlineMeetingConversationStarterReplyReaction.md | 3 +++ .../New-MgCommunicationOnlineMeetingRecording.md | 3 +++ .../New-MgCommunicationOnlineMeetingTranscript.md | 3 +++ .../New-MgCommunicationPresence.md | 3 +++ .../New-MgUserOnlineMeeting.md | 3 +++ .../New-MgUserOnlineMeetingAttendanceReport.md | 3 +++ .../New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../New-MgUserOnlineMeetingRecording.md | 3 +++ .../New-MgUserOnlineMeetingTranscript.md | 3 +++ .../Remove-MgCommunicationAdhocCall.md | 3 +++ .../Remove-MgCommunicationAdhocCallRecording.md | 3 +++ .../Remove-MgCommunicationAdhocCallRecordingContent.md | 3 +++ .../Remove-MgCommunicationAdhocCallTranscript.md | 3 +++ .../Remove-MgCommunicationAdhocCallTranscriptContent.md | 3 +++ ...Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md | 3 +++ .../Remove-MgCommunicationCall.md | 3 +++ .../Remove-MgCommunicationCallAudioRoutingGroup.md | 3 +++ .../Remove-MgCommunicationCallContentSharingSession.md | 3 +++ .../Remove-MgCommunicationCallOperation.md | 3 +++ .../Remove-MgCommunicationCallParticipant.md | 3 +++ .../Remove-MgCommunicationCallRecordOrganizerV2.md | 3 +++ .../Remove-MgCommunicationCallRecordParticipantV2.md | 3 +++ .../Remove-MgCommunicationCallRecordSession.md | 3 +++ .../Remove-MgCommunicationOnlineMeeting.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingAttendanceReport.md | 3 +++ ...mmunicationOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingAttendeeReport.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingConversation.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingConversationMessage.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationMessageReaction.md | 3 +++ ...ove-MgCommunicationOnlineMeetingConversationMessageReply.md | 3 +++ ...mmunicationOnlineMeetingConversationMessageReplyReaction.md | 3 +++ ...tionOnlineMeetingConversationOnlineMeetingAttendeeReport.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingConversationStarter.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationStarterReaction.md | 3 +++ ...ove-MgCommunicationOnlineMeetingConversationStarterReply.md | 3 +++ ...mmunicationOnlineMeetingConversationStarterReplyReaction.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingRecording.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingRecordingContent.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingTranscript.md | 3 +++ .../Remove-MgCommunicationOnlineMeetingTranscriptContent.md | 3 +++ ...ve-MgCommunicationOnlineMeetingTranscriptMetadataContent.md | 3 +++ .../Remove-MgCommunicationPresence.md | 3 +++ .../Remove-MgUserOnlineMeeting.md | 3 +++ .../Remove-MgUserOnlineMeetingAttendanceReport.md | 3 +++ ...move-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../Remove-MgUserOnlineMeetingAttendeeReport.md | 3 +++ .../Remove-MgUserOnlineMeetingRecording.md | 3 +++ .../Remove-MgUserOnlineMeetingRecordingContent.md | 3 +++ .../Remove-MgUserOnlineMeetingTranscript.md | 3 +++ .../Remove-MgUserOnlineMeetingTranscriptContent.md | 3 +++ .../Remove-MgUserOnlineMeetingTranscriptMetadataContent.md | 3 +++ .../Remove-MgUserPresence.md | 3 +++ .../Rename-MgCommunicationCallScreenSharingRole.md | 3 +++ .../Send-MgCommunicationCallDtmfTone.md | 3 +++ ...MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md | 3 +++ .../Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md | 3 +++ .../Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md | 3 +++ .../Send-MgUserOnlineMeetingVirtualAppointmentSm.md | 3 +++ .../Set-MgCommunicationAdhocCallRecordingContent.md | 3 +++ .../Set-MgCommunicationAdhocCallTranscriptContent.md | 3 +++ .../Set-MgCommunicationAdhocCallTranscriptMetadataContent.md | 3 +++ .../Set-MgCommunicationOnlineMeetingAttendeeReport.md | 3 +++ ...tionOnlineMeetingConversationOnlineMeetingAttendeeReport.md | 3 +++ .../Set-MgCommunicationOnlineMeetingRecordingContent.md | 3 +++ .../Set-MgCommunicationOnlineMeetingTranscriptContent.md | 3 +++ ...et-MgCommunicationOnlineMeetingTranscriptMetadataContent.md | 3 +++ .../Set-MgCommunicationPresence.md | 3 +++ .../Set-MgCommunicationPresenceAutomaticLocation.md | 3 +++ .../Set-MgCommunicationPresenceManualLocation.md | 3 +++ .../Set-MgCommunicationPresenceStatusMessage.md | 3 +++ .../Set-MgCommunicationPresenceUserPreferredPresence.md | 3 +++ .../Set-MgUserOnlineMeetingAttendeeReport.md | 3 +++ .../Set-MgUserOnlineMeetingRecordingContent.md | 3 +++ .../Set-MgUserOnlineMeetingTranscriptContent.md | 3 +++ .../Set-MgUserOnlineMeetingTranscriptMetadataContent.md | 3 +++ .../Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md | 3 +++ .../Set-MgUserPresenceAutomaticLocation.md | 3 +++ .../Set-MgUserPresenceManualLocation.md | 3 +++ .../Set-MgUserPresenceStatusMessage.md | 3 +++ .../Set-MgUserPresenceUserPreferredPresence.md | 3 +++ .../Start-MgCommunicationCallParticipantHoldMusic.md | 3 +++ .../Stop-MgCommunicationCallMediaProcessing.md | 3 +++ .../Stop-MgCommunicationCallParticipantHoldMusic.md | 3 +++ .../Update-MgCommunicationAdhocCall.md | 3 +++ .../Update-MgCommunicationAdhocCallRecording.md | 3 +++ .../Update-MgCommunicationAdhocCallTranscript.md | 3 +++ .../Update-MgCommunicationCallAudioRoutingGroup.md | 3 +++ .../Update-MgCommunicationCallContentSharingSession.md | 3 +++ .../Update-MgCommunicationCallOperation.md | 3 +++ .../Update-MgCommunicationCallParticipant.md | 3 +++ .../Update-MgCommunicationCallRecordOrganizerV2.md | 3 +++ .../Update-MgCommunicationCallRecordParticipantV2.md | 3 +++ .../Update-MgCommunicationCallRecordSession.md | 3 +++ .../Update-MgCommunicationCallRecordingStatus.md | 3 +++ .../Update-MgCommunicationOnlineMeeting.md | 3 +++ .../Update-MgCommunicationOnlineMeetingAttendanceReport.md | 3 +++ ...mmunicationOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../Update-MgCommunicationOnlineMeetingConversation.md | 3 +++ .../Update-MgCommunicationOnlineMeetingConversationMessage.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationMessageReaction.md | 3 +++ ...ate-MgCommunicationOnlineMeetingConversationMessageReply.md | 3 +++ ...mmunicationOnlineMeetingConversationMessageReplyReaction.md | 3 +++ .../Update-MgCommunicationOnlineMeetingConversationStarter.md | 3 +++ ...-MgCommunicationOnlineMeetingConversationStarterReaction.md | 3 +++ ...ate-MgCommunicationOnlineMeetingConversationStarterReply.md | 3 +++ ...mmunicationOnlineMeetingConversationStarterReplyReaction.md | 3 +++ .../Update-MgCommunicationOnlineMeetingRecording.md | 3 +++ .../Update-MgCommunicationOnlineMeetingTranscript.md | 3 +++ .../Update-MgCommunicationPresence.md | 3 +++ .../Update-MgUserOnlineMeeting.md | 3 +++ .../Update-MgUserOnlineMeetingAttendanceReport.md | 3 +++ ...date-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 3 +++ .../Update-MgUserOnlineMeetingRecording.md | 3 +++ .../Update-MgUserOnlineMeetingTranscript.md | 3 +++ .../Update-MgUserPresence.md | 3 +++ 252 files changed, 756 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 78d99d4f6fc22..32246130508ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -16,6 +16,9 @@ title: Add-MgCommunicationCallLargeGalleryView Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster. +> [!NOTE] +> To view the beta release of this cmdlet, view [Add-MgBetaCommunicationCallLargeGalleryView](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Add-MgBetaCommunicationCallLargeGalleryView?view=graph-powershell-beta) + ## SYNTAX ### AddExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 222f2f43c62fe..605e55701c064 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -17,6 +17,9 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### ClearExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index 8b826159c3fcb..dfe03180eb06e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md @@ -16,6 +16,9 @@ title: Clear-MgCommunicationPresenceAutomaticLocation Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceAutomaticLocation?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index 428ae9cb4ffdf..3611b3f09ca35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md @@ -15,6 +15,9 @@ title: Clear-MgCommunicationPresenceLocation Clear the work location signals for a user, including both the manual and automatic layers for the current date. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceLocation?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index a132a735f8a35..7d2cc4387932f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md @@ -15,6 +15,9 @@ title: Clear-MgCommunicationPresenceUserPreferredPresence Clear the preferred availability and activity status for a user. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaCommunicationPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaCommunicationPresenceUserPreferredPresence?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index dddbbdf3b7c65..3b0902cd454e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -17,6 +17,9 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresence?view=graph-powershell-beta) + ## SYNTAX ### ClearExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index dcbb89537023c..6213cf990f00e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -16,6 +16,9 @@ title: Clear-MgUserPresenceAutomaticLocation Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceAutomaticLocation?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index a4023a7fff267..5f931adce5132 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -15,6 +15,9 @@ title: Clear-MgUserPresenceLocation Clear the work location signals for a user, including both the manual and automatic layers for the current date. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceLocation?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index c87b8f4e21cb4..404c01751d97b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -15,6 +15,9 @@ title: Clear-MgUserPresenceUserPreferredPresence Clear the preferred availability and activity status for a user. +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaUserPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Clear-MgBetaUserPresenceUserPreferredPresence?view=graph-powershell-beta) + ## SYNTAX ### Clear (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index 8175d2089896f..7628d359fc5cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCall Get adhocCalls from communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index 5ee45786575bc..12f19fa79b996 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCallCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index 2ac2a849a1ef2..cfe879c149420 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationAdhocCallRecording The recordings of a call. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 2870b6ff3316c..7416080d6162f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index 0617e3d3b8e5c..eedb7ee24c4a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCallRecordingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index b9df4e356277f..bb79ab578ba1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCallRecordingDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallRecordingDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index a66d4f0121713..95e5ebe067394 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationAdhocCallTranscript The transcripts of a call. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index 17b1f3fc00550..787d63e63ee2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index 6eb841827f0cb..12bb8bfcae921 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCallTranscriptCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index 5c36218ac33de..d7575960b26b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationAdhocCallTranscriptDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index 02e2676197ef4..ade9a9a6990d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index ae4e441f157e5..4383f63ecc668 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCall Retrieve the properties and relationships of a call object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 297833518ad1d..d411ea28e15f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallAudioRoutingGroup Retrieve the properties and relationships of an audioRoutingGroup object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index 308585a8ff1f2..e0bc04ca18586 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallAudioRoutingGroupCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallAudioRoutingGroupCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallAudioRoutingGroupCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 31d0d7a2d52f5..039aae3354236 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallContentSharingSession Retrieve the properties of a contentSharingSession object in a call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index 18af89e96f1af..ec048e44e2231 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallContentSharingSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallContentSharingSessionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallContentSharingSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index f5bcb628ffe2d..e81584a8daec3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 5c480d6c9a6db..38bd699f21b73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallOperation Get the status of an operation that adds the large gallery view to a call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallOperation?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index 0317340bfd0e2..47c8062980b86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallOperationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallOperationCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallOperationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index 9ef5aef402a32..b4beb0230f0ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallParticipant Retrieve the properties and relationships of a participant object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 7c176f7c9af09..8dd28f20ec921 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallParticipantCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallParticipantCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallParticipantCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index 50a59cbc24db4..2a4bfe6ac9f48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -17,6 +17,9 @@ Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:\r* Subscribe to change notifications to the /communications/callRecords endpoint.\r* Use the callChainId property of a call. The call record is available only after the associated call is completed. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecord?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index e28a179aaf605..00810bc295aca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index 9afa6fcff4b14..53a21864e5eaf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationCallRecordOrganizerV2 Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index 8bc7b3eb3a57a..d4e927fa5d91e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallRecordParticipant Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordParticipant?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index 42749bf815cf2..adf9804afe391 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallRecordParticipantV2 List of distinct participants in the call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index 7cfe07e0fe265..f21e54fea7207 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -18,6 +18,9 @@ Peer-to-peer calls typically only have one session, whereas group calls typicall Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index 7f607d928d8af..3e462a5193259 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallRecordSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSessionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 115b414baa25d..93011f5656b20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationCallRecordSessionSegmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationCallRecordSessionSegmentCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationCallRecordSessionSegmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 7d2c8b007c421..5cbc12df156d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeeting Get onlineMeetings from communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index 3be1e6a73afab..de2257bc63169 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReport The attendance reports of an online meeting. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 991d5dff1846d..8621e635d8741 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index 00411cca8e179..96c6e7f2f4c0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index 51b3a5ca686ac..931c1c20e39d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingAttendanceReportCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index d5c250fac7e02..c8951d54ee0b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index 3da431690fc0d..02a6f020dd55c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversation A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index 1b6d906e31430..fa73bc2a8d2c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index 288540dbdaf34..31332aac9d4df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessage The messages in a Viva Engage conversation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index e78079c1277b0..92592131ca608 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageConversation?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index 5e0393bdcf158..a2e1ed4f61dc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index 8264fbe38260c..249dc41f8757d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReaction A collection of reactions (such as like and smile) that users have applied to this message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index dd337b6ba5c20..b9529e9eacee7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReactionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReactionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index eb877b5fdeec2..daadbac5f23e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReply A collection of messages that are replies to this message and form a threaded discussion. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index b937bcbb2cdcb..945486e867ca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyConversation?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index 1d39e5d399300..fd5792439849d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index cbd0e3b61a43b..af2d6a252359b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction A collection of reactions (such as like and smile) that users have applied to this message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index 2e5d1e34db107..9f59e1e241627 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyReactionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 04ab6f7a95e78..23587d1606f4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationMessageReplyTo The parent message to which this message is a reply, if it is part of a reply chain. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyTo](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationMessageReplyTo?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index 0777cba6a20f1..a372163b27707 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationOnlineMeeting The online meeting associated with the conversation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index d8cf9da424812..bd7a76dd8bda1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index a93cba6662740..43628ff1ad13e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarter The first message in a Viva Engage conversation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index dd35fb04057a9..fcde0e989d8f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterConversation?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index cd75a86d86df3..01ee40dc76f4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReaction A collection of reactions (such as like and smile) that users have applied to this message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index 44d33ed35dad3..c255aeda02c42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReactionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReactionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index c3d937681e79d..d011e92204b62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReply A collection of messages that are replies to this message and form a threaded discussion. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index d64c6f6c78b27..f662de2d99eac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyConversation?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index 6ea4fbc07c64d..e5861d634effd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index e99041097e715..9e40e3f65e65f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction A collection of reactions (such as like and smile) that users have applied to this message. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index bdc76f0f3d6ea..9039d22c264d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReactionCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyReactionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index 5d82ee799246a..607b2d23c9e4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingConversationStarterReplyTo The parent message to which this message is a reply, if it is part of a reply chain. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyTo](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingConversationStarterReplyTo?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index 5f445a761ea7e..5151d0025dbe6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index bb0773b2675bd..2ad4db52e8605 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -17,6 +17,9 @@ Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingMessage?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index 8815e02c113ad..1992172279055 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingRecording The recordings of an online meeting. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index d98f17447c979..1d0fac2d1004d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index 4fb04485a6b3b..fb97877fbe69f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingRecordingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index 61c5f21ebae93..ce8fe62c3c635 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingRecordingDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingRecordingDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index 0e63ec60d99ac..c1d9b592ccda6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingTranscript The transcripts of an online meeting. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index 81d731b08f0d5..ed17fc4287f2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index b0145842cc11f..45297269e3052 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingTranscriptCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index c2c4369103964..8bfc630860381 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationOnlineMeetingTranscriptDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index de0e41abfe45b..9683dc842bb96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Get-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index 844dd3e7b8162..c5040b5d70338 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -17,6 +17,9 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index 46c4f8dbc140c..180864b874679 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationPresence Get a user's presence information. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 66f295c7f39ca..fbddf909ccbff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationPresenceByUserId Get the presence information for multiple users. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresenceByUserId](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresenceByUserId?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md index 6bf5e999152f3..d6721a01bacd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md @@ -15,6 +15,9 @@ title: Get-MgCommunicationPresenceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaCommunicationPresenceCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaCommunicationPresenceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index 7fe4253591c9d..cb7c14893e9fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeeting Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index 11f0b22644b7b..56e61a7384d74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -16,6 +16,9 @@ title: Get-MgUserOnlineMeetingAttendanceReport The attendance reports of an online meeting. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 91f900312f493..ed5b76be86fe3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -16,6 +16,9 @@ title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index e5d33b4b4e973..2fdb7c18d388d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index bf41835f90b3b..e10720c7601b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingAttendanceReportCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendanceReportCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index b26b28b836988..933dfc6f40afc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Get-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index 710656e15d783..e86aee7253cee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index b9e6135a70506..244b24d81cba9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -18,6 +18,9 @@ This API supports the retrieval of call recordings from all meeting types except For a recording, this API returns the metadata of the single recording associated with the online meeting or an ad hoc call. For the content of a recording, this API returns the stream of bytes associated with the recording. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 70d67c34e2492..8403411d2b048 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Get-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index 5ca53286c95f8..0349dbd5371fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingRecordingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index c48c20d0debde..d22843821f238 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingRecordingDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingRecordingDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingRecordingDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index ffd4411735bc4..4fe38f53b8ad2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -18,6 +18,9 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### Get1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 5748dfd234611..0a5fd81a69239 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -18,6 +18,9 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index 9ee5ac31aed35..d28fea29b171c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingTranscriptCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptCount](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index 5e5e4763494e7..d63874c5a3f3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -15,6 +15,9 @@ title: Get-MgUserOnlineMeetingTranscriptDelta Invoke function delta +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptDelta](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index fde3e98723dfc..b1cd62df78684 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -18,6 +18,9 @@ This API supports the retrieval of call transcripts from all meeting types excep Retrieving the transcript returns the metadata of the single transcript associated with an online meeting or an ad hoc call. Retrieving the content of the transcript returns the stream of text associated with the transcript. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index ef2fff439ad54..d2ba3316b017f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -17,6 +17,9 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index 9c568d5def322..f7c83bffeab4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -15,6 +15,9 @@ title: Get-MgUserPresence Get a user's presence information. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Get-MgBetaUserPresence?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index 7f03f4c948d6a..fd8a06d453e7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -20,6 +20,9 @@ The bot is expected to answer, reject, or redirect the call before the call time The current timeout value is 15 seconds for regular scenarios and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios: +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaAnswerCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaAnswerCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### AnswerExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index 2419818959338..fe28a6c0eb664 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -16,6 +16,9 @@ title: Invoke-MgCreateOrGetCommunicationOnlineMeeting Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 07a6717e48863..42ad3084cf4f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -19,6 +19,9 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaInviteCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaInviteCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### InviteExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index 65d6299882506..01839baa197fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -21,6 +21,9 @@ Make sure that these requests are successful to prevent the call from timing out Attempting to send a request to a call that has already ended will result in a 404 Not-Found error. The resources related to the call should be cleaned up on the application side. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaKeepCommunicationCallAlive](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaKeepCommunicationCallAlive?view=graph-powershell-beta) + ## SYNTAX ### Keep (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index bc6c36a48b752..37e5009c707b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -21,6 +21,9 @@ The other media leg is between the CVI bot and the VTC device. The third-party partners own the VTC media leg and the Teams infrastructure cannot access the quality data of the third-party call leg. This method is only for the CVI partners to provide their media quality data. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality?view=graph-powershell-beta) + ## SYNTAX ### LogExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 9c89aaa0634e7..1d0d8962a1c05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -17,6 +17,9 @@ Allows the application to mute itself. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more details about how to handle mute operations, see muteParticipantOperation +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaMuteCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaMuteCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### MuteExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 3d3005f4f5efe..2716c6340272c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -17,6 +17,9 @@ Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaMuteCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaMuteCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### MuteExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index 518576a032aca..cd725d860c6e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -16,6 +16,9 @@ title: Invoke-MgPlayCommunicationCallPrompt Play a prompt in the call. For more information about how to handle operations, see commsOperation +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaPlayCommunicationCallPrompt](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaPlayCommunicationCallPrompt?view=graph-powershell-beta) + ## SYNTAX ### PlayExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 223280778d333..05b6eb179ab83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -19,6 +19,9 @@ The maximum length of recording is 2 minutes. The recording is not saved permanently by the Cloud Communications Platform and is discarded shortly after the call ends. The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value that's given in the completed notification. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaRecordCommunicationCallResponse](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRecordCommunicationCallResponse?view=graph-powershell-beta) + ## SYNTAX ### RecordExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index a2a9b6e3fd4bc..a1420560568ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -18,6 +18,9 @@ The terms 'redirecting' and 'forwarding' a call are used interchangeably. The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaRedirectCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRedirectCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### RedirectExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 028abda17f6b6..e8430a5fc8c9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -21,6 +21,9 @@ The current timeout value is 15 seconds. This API does not end existing calls that have already been answered. Use delete call to end a call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaRejectCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaRejectCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### RejectExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 7e66e7b26e9ee..3c035630c81a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -15,6 +15,9 @@ title: Invoke-MgSubscribeCommunicationCallToTone Subscribe to DTMF (dual-tone multi-frequency signaling) which allows you to be notified when the user presses keys on a 'dialpad'. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaSubscribeCommunicationCallToTone](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaSubscribeCommunicationCallToTone?view=graph-powershell-beta) + ## SYNTAX ### SubscribeExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 41beed516bdb7..072ed1d3dc3d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -17,6 +17,9 @@ Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaUnmuteCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Invoke-MgBetaUnmuteCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### UnmuteExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index 1dca4205a0a71..dcc8bd5de5347 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -17,6 +17,9 @@ Transfer an active peer-to-peer call or group call. A consultative transfer means that the transferor can inform the person they want to transfer the call to (the transferee), before the transfer is made. This is opposed to transfering the call directly. +> [!NOTE] +> To view the beta release of this cmdlet, view [Move-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Move-MgBetaCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### TransferExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index 52c39922f2697..91d09e23561b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -15,6 +15,9 @@ title: New-MgCommunicationAdhocCall Create new navigation property to adhocCalls for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index d44369a2c827d..4b625e60be5e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -15,6 +15,9 @@ title: New-MgCommunicationAdhocCallRecording Create new navigation property to recordings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 1e47936bfefd0..646533220ab49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -15,6 +15,9 @@ title: New-MgCommunicationAdhocCallTranscript Create new navigation property to transcripts for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index d7ebf8ee308ee..7d958d5c13426 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -17,6 +17,9 @@ Create call enables your bot to create a new outgoing peer-to-peer or group call You need to register the calling bot and go through the list of permissions needed. This API supports the following PSTN scenarios: +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 4d3f9804d01ac..0f2cba4a18328 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallAudioRoutingGroup Create a new audioRoutingGroup. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index ff7981d9fe5e5..78e395c7c63c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallContentSharingSession Create new navigation property to contentSharingSessions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index 4a75399127626..6d23996b93ae6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallOperation Create new navigation property to operations for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallOperation?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index 75d05e48cbeee..d45d813b2d655 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallParticipant Create new navigation property to participants for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index bcc1f027d4ee1..dd75f7afd64b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallRecordParticipantV2 Create new navigation property to participants_v2 for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index 9486ed0e73993..a29051675aeaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -15,6 +15,9 @@ title: New-MgCommunicationCallRecordSession Create new navigation property to sessions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index 2ebb7891cab88..a5eb3a6dbbc04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeeting Create new navigation property to onlineMeetings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index 10d6588ad9571..a3734714ec128 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingAttendanceReport Create new navigation property to attendanceReports for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index d72759593b7bc..c35ff956352d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index 8efa424563b67..952a9dc51eca1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversation Create new navigation property to onlineMeetingConversations for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index e70febc175fb0..04e33ef27f05c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationMessage Create new navigation property to messages for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 28ac65cdeea81..07e1877884d9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReaction Create new navigation property to reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index f5afc37152f29..29dbb5131ba48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReply Create new navigation property to replies for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index b6e133dd0a62c..530e37f12ce61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationMessageReplyReaction Create new navigation property to reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index 79b582cd5c1b8..abfe058e501fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReaction Create new navigation property to reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index bf8820483fea0..9a67713c57844 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReply Create new navigation property to replies for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 968b2644cc9af..937687c15a5df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingConversationStarterReplyReaction Create new navigation property to reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index 1bfae7f57e016..d50505c7217e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingRecording Create new navigation property to recordings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index ce5e55101b6f2..d5ec149046e9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: New-MgCommunicationOnlineMeetingTranscript Create new navigation property to transcripts for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index 45bfca27fcf6e..d4919ec2e41cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -15,6 +15,9 @@ title: New-MgCommunicationPresence Create new navigation property to presences for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index 23fa591a403a9..5d7b430887c29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -15,6 +15,9 @@ title: New-MgUserOnlineMeeting Create new navigation property to onlineMeetings for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index 3b026bf749c23..b9257171bbccc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: New-MgUserOnlineMeetingAttendanceReport Create new navigation property to attendanceReports for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index c129eb4845c25..51f65fba48dc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: New-MgUserOnlineMeetingAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index f184a285ca5d8..a5916a590ec0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: New-MgUserOnlineMeetingRecording Create new navigation property to recordings for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index ae591a4858c56..f959453996d45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: New-MgUserOnlineMeetingTranscript Create new navigation property to transcripts for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/New-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index 9290fe2fede39..90c19eaa32f28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationAdhocCall Delete navigation property adhocCalls for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index bea9cf6f58462..ba18e4b59c8f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationAdhocCallRecording Delete navigation property recordings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index 38e5fc933eb31..ab4198665bf8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index 7942effa552b9..7905723c6217c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationAdhocCallTranscript Delete navigation property transcripts for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index e2fb65316597e..c4e6020601f76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index 2a6ea90e08f6e..b18f2b1f86cba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index c7e6a526d733a..9f66eb9dfba89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationCall Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCall?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index 3215234f65c21..69272987e98d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallAudioRoutingGroup Delete the specified audioRoutingGroup. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index ad85330b68982..856222c5bfd53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallContentSharingSession Delete navigation property contentSharingSessions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index 714bcc3616c7b..44d888c04b291 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallOperation Delete navigation property operations for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallOperation?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index a06e4c7c03108..de85b3469b201 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -19,6 +19,9 @@ This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index 317991ada98e3..79bda03493898 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallRecordOrganizerV2 Delete navigation property organizer_v2 for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index 146a3da0092ec..e2494a7771f3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallRecordParticipantV2 Delete navigation property participants_v2 for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index e2baf19315095..5170c55ac424d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationCallRecordSession Delete navigation property sessions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index 497aa4baf167e..e95f5ba3fd005 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeeting Delete navigation property onlineMeetings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index 45ac7cd50c4e7..c823b82f2c21c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingAttendanceReport Delete navigation property attendanceReports for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 116720ac8eeb5..fe3ce78217725 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index 773446213836c..d66702161c1da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index a8d3729720752..6d3947e0deec9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversation Delete navigation property onlineMeetingConversations for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index b7dd5a1a16960..1b9593f18e566 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessage Delete navigation property messages for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index bac331cba5de7..7f06a60ee3a90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReaction Delete navigation property reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index acf6211076a1a..73cd9dca93c69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReply Delete navigation property replies for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 54bbc5a5d3c25..c5818a8ea15a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction Delete navigation property reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 510c07fb78b03..bd8496a80c486 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeRepor The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index eb77b1f0d2ce4..1b82a2bbe3bfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarter Delete navigation property starter for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index 1b16506092d7d..e6b94787d5a1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReaction Delete navigation property reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index de76c9785ea1e..031d62809e176 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReply Delete navigation property replies for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 911357ef89c7b..3937011e164b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction Delete navigation property reactions for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index 5b5ce14e2802c..d32c11d0a8691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingRecording Delete navigation property recordings for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index 361b43623ebd2..24b4eeb62cdbb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index ffeae8148e2de..9ab2b7299d538 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationOnlineMeetingTranscript Delete navigation property transcripts for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index 7bfd5ca935cea..5892c88f8653e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 5d327149bf06e..6b358cbcdb288 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index 3ef70e54fa983..f809abb03f67e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md @@ -15,6 +15,9 @@ title: Remove-MgCommunicationPresence Delete navigation property presences for communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index e32fde4d66dd4..e85d13b59a106 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -15,6 +15,9 @@ title: Remove-MgUserOnlineMeeting Delete navigation property onlineMeetings for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index 9541467c601eb..b7baef36d78df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: Remove-MgUserOnlineMeetingAttendanceReport Delete navigation property attendanceReports for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f2ae3fcda886a..43f4ecbd29b1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index dadd4b50018c7..e9e5d2c6cf221 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Remove-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index 0ffd83256b75d..23dcbb07e2f61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: Remove-MgUserOnlineMeetingRecording Delete navigation property recordings for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index d413c865e524f..1599c795dc926 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Remove-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index fc992c42f2c87..5db9071991b24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: Remove-MgUserOnlineMeetingTranscript Delete navigation property transcripts for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index e0e7ad571bc8b..9d2dfdf144823 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -16,6 +16,9 @@ title: Remove-MgUserOnlineMeetingTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index b2585760b3f29..1f9b89dd6c30e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Remove-MgUserOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index 97d483acd44ea..c5b1c95793320 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md @@ -15,6 +15,9 @@ title: Remove-MgUserPresence Delete navigation property presence for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Remove-MgBetaUserPresence?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 36b9e518f73a9..f9702574c135d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -15,6 +15,9 @@ title: Rename-MgCommunicationCallScreenSharingRole Allow applications to share screen content with the participants of a group call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Rename-MgBetaCommunicationCallScreenSharingRole](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Rename-MgBetaCommunicationCallScreenSharingRole?view=graph-powershell-beta) + ## SYNTAX ### ChangeExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index e70fceb7806b0..3dfc5de966c78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -15,6 +15,9 @@ title: Send-MgCommunicationCallDtmfTone Invoke action sendDtmfTones +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationCallDtmfTone](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationCallDtmfTone?view=graph-powershell-beta) + ## SYNTAX ### SendExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 61e4d2a84fb76..b99b77d3f9e77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -16,6 +16,9 @@ title: Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm?view=graph-powershell-beta) + ## SYNTAX ### SendExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 7efc41ae0c8f0..99ec462dbc098 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -17,6 +17,9 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm?view=graph-powershell-beta) + ## SYNTAX ### SendExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 33d9d14a4f9e0..5d6f3f221f17f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -16,6 +16,9 @@ title: Send-MgUserOnlineMeetingVirtualAppointmentReminderSm Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm?view=graph-powershell-beta) + ## SYNTAX ### SendExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index 2f2a59cfd5fbf..7631ca524fcda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -17,6 +17,9 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaUserOnlineMeetingVirtualAppointmentSm](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Send-MgBetaUserOnlineMeetingVirtualAppointmentSm?view=graph-powershell-beta) + ## SYNTAX ### SendExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index 8f5bdf4e3a796..422690c56f9da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationAdhocCallRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 58d84c8192c9b..0acdd1f7dd2ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationAdhocCallTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index 120f52a90ee4a..e3fd79406f6c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationAdhocCallTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationAdhocCallTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationAdhocCallTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index b42bf11d827bf..d358d714125d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 0e725d4eaac8e..4d2df405330d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index 79b1430e0397e..c2467da539c95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index bf98c863b8b0e..81464ace98a8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationOnlineMeetingTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 98010de43a49e..a2bc1d120c82e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index e6b0b2eaeaf8f..26a43afbe5d6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationPresence Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index 469a53cbbb1a4..1fc73939ad6b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -17,6 +17,9 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceAutomaticLocation?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 8c48f0e790d1c..0bdbbbe4e4c56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationPresenceManualLocation Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceManualLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceManualLocation?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index 649cee3869532..df9bf12aaa367 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -16,6 +16,9 @@ title: Set-MgCommunicationPresenceStatusMessage Set a presence status message for a user. An optional expiration date and time can be supplied. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceStatusMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceStatusMessage?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index cdcce39f6ced8..80644301a5523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -20,6 +20,9 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaCommunicationPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaCommunicationPresenceUserPreferredPresence?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index fc611139e529e..e4eb5d4eda826 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -16,6 +16,9 @@ title: Set-MgUserOnlineMeetingAttendeeReport The content stream of the attendee report of a Microsoft Teams live event. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingAttendeeReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingAttendeeReport?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index 9d31709b0ee48..cc10c832f23e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -16,6 +16,9 @@ title: Set-MgUserOnlineMeetingRecordingContent The content of the recording. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingRecordingContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingRecordingContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index f12a4531293b8..025cd2857be51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -16,6 +16,9 @@ title: Set-MgUserOnlineMeetingTranscriptContent The content of the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingTranscriptContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingTranscriptContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 671fece8064a0..76eebc25c079d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -16,6 +16,9 @@ title: Set-MgUserOnlineMeetingTranscriptMetadataContent The time-aligned metadata of the utterances in the transcript. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserOnlineMeetingTranscriptMetadataContent](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserOnlineMeetingTranscriptMetadataContent?view=graph-powershell-beta) + ## SYNTAX ### Set (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index 3595c23ae7eed..a476ac210351b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -16,6 +16,9 @@ title: Set-MgUserPresence Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresence?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index 53750f30fc2bb..3d0d691ff06f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -17,6 +17,9 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceAutomaticLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceAutomaticLocation?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index 5b014e4067059..602729f540727 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -16,6 +16,9 @@ title: Set-MgUserPresenceManualLocation Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceManualLocation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceManualLocation?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 41e0550f1865b..d25a077da3a26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -16,6 +16,9 @@ title: Set-MgUserPresenceStatusMessage Set a presence status message for a user. An optional expiration date and time can be supplied. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceStatusMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceStatusMessage?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index 7c94d980c1d55..802b73db3c753 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -20,6 +20,9 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaUserPresenceUserPreferredPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Set-MgBetaUserPresenceUserPreferredPresence?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index e5207eed71df3..b39bcebdb5b48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -15,6 +15,9 @@ title: Start-MgCommunicationCallParticipantHoldMusic Put a participant on hold and play music in the background. +> [!NOTE] +> To view the beta release of this cmdlet, view [Start-MgBetaCommunicationCallParticipantHoldMusic](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Start-MgBetaCommunicationCallParticipantHoldMusic?view=graph-powershell-beta) + ## SYNTAX ### StartExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index 39967e8c6eccd..17d7b90cff834 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -19,6 +19,9 @@ The cancelMediaProcessing method cancels any operation that is in-process as wel For example, this method can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a subscribeToTone operation because it operates independent of any operation queue. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaCommunicationCallMediaProcessing](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Stop-MgBetaCommunicationCallMediaProcessing?view=graph-powershell-beta) + ## SYNTAX ### CancelExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index bf71d09e1de16..523eee971ab1b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -15,6 +15,9 @@ title: Stop-MgCommunicationCallParticipantHoldMusic Reincorporate a participant previously put on hold to the call. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaCommunicationCallParticipantHoldMusic](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Stop-MgBetaCommunicationCallParticipantHoldMusic?view=graph-powershell-beta) + ## SYNTAX ### StopExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 93b417c43acff..353557f9c326d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationAdhocCall Update the navigation property adhocCalls in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCall](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCall?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index cce72ab071d0f..9ab92923f9531 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationAdhocCallRecording Update the navigation property recordings in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCallRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCallRecording?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index 7e38a0fc65ac1..a9530c1779dc8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationAdhocCallTranscript Update the navigation property transcripts in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationAdhocCallTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationAdhocCallTranscript?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 36a89354c442b..8333798d10360 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallAudioRoutingGroup Modify sources and receivers of an audioRoutingGroup. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallAudioRoutingGroup](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallAudioRoutingGroup?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 2cf39515e3a2f..1a0e64ba03279 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallContentSharingSession Update the navigation property contentSharingSessions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallContentSharingSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallContentSharingSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index 194901d005c29..ea4c0563e63e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallOperation Update the navigation property operations in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallOperation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallOperation?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index 047fdd7c95336..4ff5105a24f94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallParticipant Update the navigation property participants in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallParticipant](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallParticipant?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index 3571aff4d97f3..137c6d4d2e591 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallRecordOrganizerV2 Update the navigation property organizer_v2 in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordOrganizerV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordOrganizerV2?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index 42967c273119a..580d6169a84f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallRecordParticipantV2 Update the navigation property participants_v2 in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordParticipantV2](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordParticipantV2?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index 7fd49b92feb29..ef2ea597a7095 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationCallRecordSession Update the navigation property sessions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordSession](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 42b0a274a0e1a..a31a33350ee57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -16,6 +16,9 @@ title: Update-MgCommunicationCallRecordingStatus Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationCallRecordingStatus](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationCallRecordingStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index 890ae8996b9f7..9aa9ab1252816 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeeting Update the navigation property onlineMeetings in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 6065f0480cd1c..07fc4b6fc7f7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingAttendanceReport Update the navigation property attendanceReports in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index a67a8e37b4e36..8eff7cea325c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index ec8148fca011b..4c412d6e507aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversation Update the navigation property onlineMeetingConversations in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversation](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversation?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index 06a3159088d61..880bc35b55f26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationMessage Update the navigation property messages in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessage](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessage?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index edc2746be87f0..8e3b65f6b321e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReaction Update the navigation property reactions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReaction?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index 333b05b872756..ba49b50b2f15a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReply Update the navigation property replies in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReply?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index af61b98c8ec2d..aa4c198143026 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction Update the navigation property reactions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationMessageReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index 901584f85c88d..02ffbf5ab5e67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationStarter Update the navigation property starter in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarter](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarter?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index 58c10eee2bcb7..a1618a8d17ea8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReaction Update the navigation property reactions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReaction?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index 0183e0630d922..5212a7e8a3461 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReply Update the navigation property replies in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReply](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReply?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 52d99d1d22c8a..51b5e956970ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction Update the navigation property reactions in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingConversationStarterReplyReaction?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index 317b6dbc33224..aac0e606be42a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingRecording Update the navigation property recordings in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index 9ec7e70b3d9b3..c6132959a2ccd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationOnlineMeetingTranscript Update the navigation property transcripts in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index fd82e2c7ca21a..ad716af7d7f06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -15,6 +15,9 @@ title: Update-MgCommunicationPresence Update the navigation property presences in communications +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaCommunicationPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaCommunicationPresence?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index 8922d88fa1fd2..dbb399863c50f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -15,6 +15,9 @@ title: Update-MgUserOnlineMeeting Update the navigation property onlineMeetings in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeeting](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeeting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index 5e3d9eb41e925..a9de20b462d2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -15,6 +15,9 @@ title: Update-MgUserOnlineMeetingAttendanceReport Update the navigation property attendanceReports in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingAttendanceReport](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f8ee76be0d785..e56d07cd443df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index be5be9f66cd9c..4d62a6fd32280 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -15,6 +15,9 @@ title: Update-MgUserOnlineMeetingRecording Update the navigation property recordings in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingRecording](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingRecording?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index 3e2b47c15688b..f8beb21b81be8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -15,6 +15,9 @@ title: Update-MgUserOnlineMeetingTranscript Update the navigation property transcripts in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserOnlineMeetingTranscript](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserOnlineMeetingTranscript?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 5e7f41ac8025d..2096cc365fa09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -15,6 +15,9 @@ title: Update-MgUserPresence Update the navigation property presence in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserPresence](/powershell/module/Microsoft.Graph.Beta.CloudCommunications/Update-MgBetaUserPresence?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From 402566772f9352517ab7406bfe580a5d5aee0561 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:39 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- ...Add-MgCommunicationCallLargeGalleryView.md | 7 +- .../Clear-MgCommunicationPresence.md | 11 +-- ...gCommunicationPresenceAutomaticLocation.md | 11 +-- .../Clear-MgCommunicationPresenceLocation.md | 11 +-- ...municationPresenceUserPreferredPresence.md | 11 +-- .../Clear-MgUserPresence.md | 7 +- .../Clear-MgUserPresenceAutomaticLocation.md | 7 +- .../Clear-MgUserPresenceLocation.md | 7 +- ...ear-MgUserPresenceUserPreferredPresence.md | 7 +- .../Get-MgCommunicationCall.md | 14 +++- ...et-MgCommunicationCallAudioRoutingGroup.md | 7 +- ...gCommunicationCallContentSharingSession.md | 7 +- .../Get-MgCommunicationCallOperation.md | 7 +- .../Get-MgCommunicationCallParticipant.md | 7 +- .../Get-MgCommunicationCallRecord.md | 16 ++++- ...-MgCommunicationCallRecordParticipantV2.md | 7 +- .../Get-MgCommunicationCallRecordSession.md | 16 ++++- .../Get-MgCommunicationOnlineMeeting.md | 9 ++- ...municationOnlineMeetingAttendanceReport.md | 12 +--- ...MeetingAttendanceReportAttendanceRecord.md | 12 +--- ...ommunicationOnlineMeetingAttendeeReport.md | 11 +-- ...nlineMeetingConversationMessageReaction.md | 7 +- ...Get-MgCommunicationOnlineMeetingMessage.md | 9 ++- ...lineMeetingVirtualAppointmentJoinWebUrl.md | 11 +-- .../Get-MgCommunicationPresence.md | 7 +- .../Get-MgCommunicationPresenceByUserId.md | 7 +- .../Get-MgUserOnlineMeeting.md | 25 +++++-- ...Get-MgUserOnlineMeetingAttendanceReport.md | 7 +- ...MeetingAttendanceReportAttendanceRecord.md | 7 +- .../Get-MgUserOnlineMeetingAttendeeReport.md | 7 +- .../Get-MgUserOnlineMeetingRecording.md | 7 +- .../Get-MgUserOnlineMeetingTranscript.md | 7 +- ...et-MgUserOnlineMeetingTranscriptContent.md | 16 ++++- ...rOnlineMeetingTranscriptMetadataContent.md | 7 +- ...lineMeetingVirtualAppointmentJoinWebUrl.md | 7 +- .../Get-MgUserPresence.md | 14 +++- .../Invoke-MgAnswerCommunicationCall.md | 21 +++++- ...MgCreateOrGetCommunicationOnlineMeeting.md | 11 +-- ...ke-MgInviteCommunicationCallParticipant.md | 35 ++++++++-- .../Invoke-MgKeepCommunicationCallAlive.md | 7 +- ...nicationCallTeleconferenceDeviceQuality.md | 8 ++- .../Invoke-MgMuteCommunicationCall.md | 7 +- ...voke-MgMuteCommunicationCallParticipant.md | 7 +- .../Invoke-MgPlayCommunicationCallPrompt.md | 7 +- ...nvoke-MgRecordCommunicationCallResponse.md | 7 +- .../Invoke-MgRedirectCommunicationCall.md | 7 +- .../Invoke-MgRejectCommunicationCall.md | 14 +++- ...voke-MgSubscribeCommunicationCallToTone.md | 7 +- .../Invoke-MgUnmuteCommunicationCall.md | 7 +- .../Move-MgCommunicationCall.md | 35 ++++++++-- .../New-MgCommunicationCall.md | 70 ++++++++++++++++--- ...ew-MgCommunicationCallAudioRoutingGroup.md | 7 +- ...gCommunicationCallContentSharingSession.md | 11 +-- .../New-MgCommunicationCallOperation.md | 11 +-- .../New-MgCommunicationCallParticipant.md | 11 +-- .../New-MgCommunicationCallRecordSession.md | 11 +-- .../New-MgCommunicationOnlineMeeting.md | 11 +-- ...municationOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../New-MgCommunicationPresence.md | 11 +-- .../New-MgUserOnlineMeeting.md | 21 +++++- ...New-MgUserOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../Remove-MgCommunicationCall.md | 7 +- ...ve-MgCommunicationCallAudioRoutingGroup.md | 7 +- ...gCommunicationCallContentSharingSession.md | 11 +-- .../Remove-MgCommunicationCallOperation.md | 11 +-- .../Remove-MgCommunicationCallParticipant.md | 14 +++- ...Remove-MgCommunicationCallRecordSession.md | 11 +-- .../Remove-MgCommunicationOnlineMeeting.md | 11 +-- ...municationOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../Remove-MgCommunicationPresence.md | 11 +-- .../Remove-MgUserOnlineMeeting.md | 7 +- ...ove-MgUserOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../Remove-MgUserPresence.md | 11 +-- ...me-MgCommunicationCallScreenSharingRole.md | 7 +- ...lineMeetingVirtualAppointmentReminderSm.md | 11 +-- ...cationOnlineMeetingVirtualAppointmentSm.md | 11 +-- ...lineMeetingVirtualAppointmentReminderSm.md | 7 +- ...MgUserOnlineMeetingVirtualAppointmentSm.md | 7 +- ...ommunicationOnlineMeetingAttendeeReport.md | 11 +-- .../Set-MgCommunicationPresence.md | 11 +-- ...gCommunicationPresenceAutomaticLocation.md | 11 +-- ...t-MgCommunicationPresenceManualLocation.md | 11 +-- ...et-MgCommunicationPresenceStatusMessage.md | 11 +-- ...municationPresenceUserPreferredPresence.md | 11 +-- .../Set-MgUserOnlineMeetingAttendeeReport.md | 11 +-- .../Set-MgUserPresence.md | 7 +- .../Set-MgUserPresenceAutomaticLocation.md | 7 +- .../Set-MgUserPresenceManualLocation.md | 7 +- .../Set-MgUserPresenceStatusMessage.md | 14 +++- ...Set-MgUserPresenceUserPreferredPresence.md | 7 +- ...MgCommunicationCallParticipantHoldMusic.md | 7 +- ...Stop-MgCommunicationCallMediaProcessing.md | 7 +- ...MgCommunicationCallParticipantHoldMusic.md | 7 +- ...te-MgCommunicationCallAudioRoutingGroup.md | 7 +- ...gCommunicationCallContentSharingSession.md | 11 +-- .../Update-MgCommunicationCallOperation.md | 11 +-- .../Update-MgCommunicationCallParticipant.md | 11 +-- ...Update-MgCommunicationCallRecordSession.md | 11 +-- ...date-MgCommunicationCallRecordingStatus.md | 7 +- .../Update-MgCommunicationOnlineMeeting.md | 11 +-- ...municationOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../Update-MgCommunicationPresence.md | 11 +-- .../Update-MgUserOnlineMeeting.md | 14 +++- ...ate-MgUserOnlineMeetingAttendanceReport.md | 11 +-- ...MeetingAttendanceReportAttendanceRecord.md | 11 +-- .../Update-MgUserPresence.md | 11 +-- 111 files changed, 621 insertions(+), 593 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 32246130508ae..20170e0da513c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -79,8 +79,9 @@ For details about how to identify a large gallery view participant in a roster s | Application | Calls.JoinGroupCallAsGuest.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -90,6 +91,10 @@ $params = @{ Add-MgCommunicationCallLargeGalleryView -CallId $callId -BodyParameter $params +``` +This example shows how to use the Add-MgCommunicationCallLargeGalleryView Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 605e55701c064..3a7f6b11414cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -72,16 +72,6 @@ Clear the application's presence session for a user. If it is the user's only presence session, the user's presence will change to Offline/Offline. For details about presences sessions, see presence: setPresence. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -539,5 +529,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index dfe03180eb06e..3fde41520e72e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -414,5 +404,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index 3611b3f09ca35..879674d6c0a71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Clear the work location signals for a user, including both the manual and automatic layers for the current date. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index 7d2cc4387932f..4b83b06716cc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Clear the preferred availability and activity status for a user. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index 3b0902cd454e1..616f6bc572025 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -80,8 +80,9 @@ For details about presences sessions, see presence: setPresence. | Application | Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -91,6 +92,10 @@ $params = @{ Clear-MgUserPresence -UserId $userId -BodyParameter $params +``` +This example shows how to use the Clear-MgUserPresence Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index 6213cf990f00e..d769c07376fb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -50,14 +50,19 @@ Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Clear-MgUserPresenceAutomaticLocation -UserId $userId +``` +This example shows how to use the Clear-MgUserPresenceAutomaticLocation Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index 5f931adce5132..fc06dee6913c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -48,14 +48,19 @@ This cmdlet has the following aliases, Clear the work location signals for a user, including both the manual and automatic layers for the current date. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Clear-MgUserPresenceLocation -UserId $userId +``` +This example shows how to use the Clear-MgUserPresenceLocation Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index 404c01751d97b..bd78fff34a791 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -56,13 +56,18 @@ Clear the preferred availability and activity status for a user. | Application | Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Clear-MgUserPresenceUserPreferredPresence -UserId $userId +``` +This example shows how to use the Clear-MgUserPresenceUserPreferredPresence Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index 4383f63ecc668..11a99a7e54208 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -56,19 +56,29 @@ Retrieve the properties and relationships of a call object. | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Getting a Peer-to-Peer call -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId -### EXAMPLE 2 +``` +This example shows getting a peer-to-peer call + +### Example 2: Getting a group call + +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId +``` +This example shows getting a group call + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index d411ea28e15f1..3e98022eaab2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -69,13 +69,18 @@ Retrieve the properties and relationships of an audioRoutingGroup object. | Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallAudioRoutingGroup -CallId $callId +``` +This example shows how to use the Get-MgCommunicationCallAudioRoutingGroup Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 039aae3354236..1a1a155985c9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -69,13 +69,18 @@ Retrieve the properties of a contentSharingSession object in a call. | Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallContentSharingSession -CallId $callId +``` +This example shows how to use the Get-MgCommunicationCallContentSharingSession Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 38bd699f21b73..5b91db3afe981 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md @@ -61,13 +61,18 @@ This cmdlet has the following aliases, Get the status of an operation that adds the large gallery view to a call. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallOperation -CallId $callId -CommsOperationId $commsOperationId +``` +This example shows how to use the Get-MgCommunicationCallOperation Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index b4beb0230f0ae..0a7d3e245256d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -69,13 +69,18 @@ Retrieve the properties and relationships of a participant object. | Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId +``` +This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index 2a4bfe6ac9f48..868364d6567fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -53,18 +53,28 @@ You can get the id of a callRecord in two ways:\r* Subscribe to change notificat The call record is available only after the associated call is completed. ## EXAMPLES +### Example 1: Get basic details -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId -### EXAMPLE 2 +``` +This example will get basic details + +### Example 2: Get full details + +```powershell Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" +Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" + +``` +This example will get full details + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index adf9804afe391..fffe04e724dfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md @@ -61,13 +61,18 @@ This cmdlet has the following aliases, List of distinct participants in the call. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordParticipantV2 -CallRecordId $callRecordId +``` +This example shows how to use the Get-MgCommunicationCallRecordParticipantV2 Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index f21e54fea7207..6d8f891b25c82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -67,18 +67,28 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Get session list -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -### EXAMPLE 2 +``` +This example will get session list + +### Example 2: Get session list with segments + +```powershell Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" + +``` +This example will get session list with segments + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 5cbc12df156d5..5b1c5d12d37d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -81,12 +81,17 @@ This cmdlet has the following aliases, Get onlineMeetings from communications ## EXAMPLES +### Example 1: Retrieve an online meeting by videoTeleconferenceId -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" +Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" + +``` +This example will retrieve an online meeting by videoteleconferenceid + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index de2257bc63169..48d607382f436 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, The attendance reports of an online meeting. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -603,6 +593,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 8621e635d8741..589202c0199d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -63,16 +63,6 @@ This cmdlet has the following aliases, List of attendance records of an attendance report. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,6 +621,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index c8951d54ee0b6..2495a2ced482b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -390,5 +380,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index 249dc41f8757d..1349550dbbc98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -63,13 +63,18 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationOnlineMeetingConversationMessageReaction -OnlineMeetingEngagementConversationId $onlineMeetingEngagementConversationId -EngagementConversationMessageId $engagementConversationMessageId +``` +This example shows how to use the Get-MgCommunicationOnlineMeetingConversationMessageReaction Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index 2ad4db52e8605..92b911118d6e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -44,12 +44,17 @@ This function returns a snapshot of all Q&A activity in JSON format. The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications -Get-MgCommunicationOnlineMeetingMessage -ExpandProperty "conversation" +Get-MgCommunicationOnlineMeetingMessage -ExpandProperty "conversation" + +``` +This example shows how to use the Get-MgCommunicationOnlineMeetingMessage Cmdlet. + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index c5040b5d70338..b293f1ebe4bd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -52,16 +52,6 @@ Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -352,5 +342,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index 180864b874679..16d191b213d45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md @@ -59,13 +59,18 @@ This cmdlet has the following aliases, Get a user's presence information. ## EXAMPLES +### Example 1: Get the presence information of another user -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationPresence -PresenceId $presenceId +``` +This example will get the presence information of another user + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index fbddf909ccbff..9b2993d484917 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -57,8 +57,9 @@ Get the presence information for multiple users. | Application | Presence.Read.All, Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -71,6 +72,10 @@ $params = @{ Get-MgCommunicationPresenceByUserId -BodyParameter $params +``` +This example shows how to use the Get-MgCommunicationPresenceByUserId Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index cb7c14893e9fb..347d5ce39856d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -110,27 +110,42 @@ Information about a meeting, including the URL used to join a meeting, the atten | Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | ## EXAMPLES +### Example 1: Retrieve an online meeting by meeting ID -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -### EXAMPLE 2 +``` +This example will retrieve an online meeting by meeting id + +### Example 2: Retrieve an online meeting by joinWebUrl + +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. -Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" +Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" + +``` +This example will retrieve an online meeting by joinweburl -### EXAMPLE 3 +### Example 3: Retrieve an online meeting by joinMeetingId + +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. -Get-MgUserOnlineMeeting -UserId $userId -Filter "joinMeetingIdSettings/joinMeetingId eq '1234567890'" +Get-MgUserOnlineMeeting -UserId $userId -Filter "joinMeetingIdSettings/joinMeetingId eq '1234567890'" + +``` +This example will retrieve an online meeting by joinmeetingid + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index 56e61a7384d74..187204e7134a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -71,14 +71,19 @@ Read-only. | Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId +``` +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index ed5b76be86fe3..f4dbb965f1311 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -65,14 +65,19 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES +### Example 1: List attendance records -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId +``` +This example will list attendance records + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index 933dfc6f40afc..2704a43a64014 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -58,14 +58,19 @@ Read-only. | Application | OnlineMeetingArtifact.Read.All, | ## EXAMPLES +### Example 1: Fetch attendee report of a Teams live event -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendeeReport -UserId $userId -OnlineMeetingId $onlineMeetingId +``` +This example will fetch attendee report of a teams live event + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index 244b24d81cba9..75632d1b093a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -99,13 +99,18 @@ For the content of a recording, this API returns the stream of bytes associated | Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | ## EXAMPLES +### Example 1: Get a callRecording -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingRecording -UserId $userId -OnlineMeetingId $onlineMeetingId -CallRecordingId $callRecordingId +``` +This example will get a callrecording + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 4fe38f53b8ad2..07f8d5f328356 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -99,13 +99,18 @@ Retrieving the content of the transcript returns the stream of text associated w | Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | ## EXAMPLES +### Example 1: Get a callTranscript -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId +``` +This example will get a calltranscript + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 0a5fd81a69239..1eba9854ea101 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -63,18 +63,28 @@ Retrieving the content of the transcript returns the stream of text associated w | Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | ## EXAMPLES +### Example 1: Get a callTranscript content -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -### EXAMPLE 2 +``` +This example will get a calltranscript content + +### Example 2: Get a callTranscript content specifying $format query param + +```powershell Import-Module Microsoft.Graph.CloudCommunications -Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" + +``` +This example will get a calltranscript content specifying $format query param + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index b1cd62df78684..08db449eb88d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -63,13 +63,18 @@ Retrieving the content of the transcript returns the stream of text associated w | Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | ## EXAMPLES +### Example 1: Get a callTranscript metadataContent -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserOnlineMeetingTranscriptMetadataContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId +``` +This example will get a calltranscript metadatacontent + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index d2ba3316b017f..5321bf07ef0f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -60,14 +60,19 @@ With Teams Premium, you can configure a custom lobby room experience for attende | Application | VirtualAppointment.Read.All, VirtualAppointment.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -UserId $userId -OnlineMeetingId $onlineMeetingId +``` +This example shows how to use the Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index f7c83bffeab4b..e67fe4c661024 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -56,20 +56,30 @@ Get a user's presence information. | Application | Presence.Read.All, Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Get your own presence information -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserPresence -UserId $userId -### EXAMPLE 2 +``` +This example will get your own presence information + +### Example 2: Get the presence information of another user + +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserPresence -UserId $userId +``` +This example will get the presence information of another user + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index fd8a06d453e7c..afe213036d866 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -90,8 +90,9 @@ This API supports the following PSTN scenarios: | Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | ## EXAMPLES +### Example 1: Answer a Peer-to-Peer VoIP call with service hosted media -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -113,7 +114,12 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 2 +``` +This example will answer a peer-to-peer voip call with service hosted media + +### Example 2: Answer VOIP call with application hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -131,7 +137,12 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 3 +``` +This example will answer voip call with application hosted media + +### Example 3: Answer a policy-based recording call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -148,6 +159,10 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params +``` +This example will answer a policy-based recording call + + ## PARAMETERS ### -AcceptedModalities diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index fe28a6c0eb664..b3eb1205f4848 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -554,5 +544,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 42ad3084cf4f2..74f86c5c554b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -78,8 +78,9 @@ When an active caller is removed, they are immediately dropped from the call wit When an invited participant is removed, any outstanding add participant request is canceled. ## EXAMPLES +### Example 1: Invite one participant to an existing call -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -103,7 +104,12 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -### EXAMPLE 2 +``` +This example will invite one participant to an existing call + +### Example 2: Invite multiple participants to an existing group call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -139,7 +145,12 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -### EXAMPLE 3 +``` +This example will invite multiple participants to an existing group call + +### Example 3: Invite participants to an existing group call, replacing an existing Peer-to-Peer call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -163,7 +174,12 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -### EXAMPLE 4 +``` +This example will invite participants to an existing group call, replacing an existing peer-to-peer call + +### Example 4: Invite one PSTN participant to an existing call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -185,7 +201,12 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params -### EXAMPLE 5 +``` +This example will invite one pstn participant to an existing call + +### Example 5: Move one participant from one meeting to another + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -210,6 +231,10 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example will move one participant from one meeting to another + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index 01839baa197fa..635af2764ceaf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -68,13 +68,18 @@ The resources related to the call should be cleaned up on the application side. | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Invoke-MgKeepCommunicationCallAlive -CallId $callId +``` +This example shows how to use the Invoke-MgKeepCommunicationCallAlive Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 37e5009c707b4..6157008c6fd1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -62,9 +62,8 @@ The third-party partners own the VTC media leg and the Teams infrastructure cann This method is only for the CVI partners to provide their media quality data. ## EXAMPLES - -### EXAMPLE 1 - +### Example 1: Using the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Quality = @{ @@ -151,6 +150,9 @@ $params = @{ } } Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality -BodyParameter $params +``` +This example shows how to use the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 1d0d8962a1c05..04ecf883e83c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -81,8 +81,9 @@ For more details about how to handle mute operations, see muteParticipantOperati | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -92,6 +93,10 @@ $params = @{ Invoke-MgMuteCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgMuteCommunicationCall Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 2716c6340272c..0d4f6b48a06e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -82,8 +82,9 @@ For more information about how to handle mute operations, see muteParticipantOpe | Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -93,6 +94,10 @@ $params = @{ Invoke-MgMuteCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -BodyParameter $params +``` +This example shows how to use the Invoke-MgMuteCommunicationCallParticipant Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index cd725d860c6e8..d97628fd2191c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -80,8 +80,9 @@ For more information about how to handle operations, see commsOperation | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -101,6 +102,10 @@ $params = @{ Invoke-MgPlayCommunicationCallPrompt -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgPlayCommunicationCallPrompt Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 05b6eb179ab83..3ac140f6a063c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -82,8 +82,9 @@ The recording is not saved permanently by the Cloud Communications Platform and The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value that's given in the completed notification. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -112,6 +113,10 @@ $params = @{ Invoke-MgRecordCommunicationCallResponse -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgRecordCommunicationCallResponse Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index a1420560568ef..3d32826c1cc85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -78,8 +78,9 @@ The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -101,6 +102,10 @@ $params = @{ Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index e8430a5fc8c9e..62b9e5e9e04b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -82,8 +82,9 @@ This API does not end existing calls that have already been answered. Use delete call to end a call. ## EXAMPLES +### Example 1: Reject an incoming call with 'Busy' reason -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -93,7 +94,12 @@ $params = @{ Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 2 +``` +This example will reject an incoming call with 'busy' reason + +### Example 2: Reject an incoming call with 'None' reason + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -103,6 +109,10 @@ $params = @{ Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params +``` +This example will reject an incoming call with 'none' reason + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 3c035630c81a3..553e778056cc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -69,8 +69,9 @@ This cmdlet has the following aliases, Subscribe to DTMF (dual-tone multi-frequency signaling) which allows you to be notified when the user presses keys on a 'dialpad'. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -80,6 +81,10 @@ $params = @{ Invoke-MgSubscribeCommunicationCallToTone -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgSubscribeCommunicationCallToTone Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 072ed1d3dc3d2..b837a65fad3ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -81,8 +81,9 @@ For more information about how to handle unmute operations, see unmuteParticipan | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -92,6 +93,10 @@ $params = @{ Invoke-MgUnmuteCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgUnmuteCommunicationCall Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index dcc8bd5de5347..020fbd389bf8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -75,8 +75,9 @@ A consultative transfer means that the transferor can inform the person they wan This is opposed to transfering the call directly. ## EXAMPLES +### Example 1: Call transfer from a peer-to-peer call -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -94,7 +95,12 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 2 +``` +This example will call transfer from a peer-to-peer call + +### Example 2: Consultative transfer from a peer-to-peer call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -116,7 +122,12 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 3 +``` +This example will consultative transfer from a peer-to-peer call + +### Example 3: Call transfer from a peer-to-peer call to PSTN number + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -137,7 +148,12 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 4 +``` +This example will call transfer from a peer-to-peer call to pstn number + +### Example 4: Consultative transfer from a peer-to-peer call to PSTN number + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -161,7 +177,12 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params -### EXAMPLE 5 +``` +This example will consultative transfer from a peer-to-peer call to pstn number + +### Example 5: Call transfer from a group call + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -188,6 +209,10 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +This example will call transfer from a group call + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index 7d958d5c13426..367dc42610a7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -71,8 +71,9 @@ This API supports the following PSTN scenarios: | Application | Calls.JoinGroupCalls.Chat, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | ## EXAMPLES +### Example 1: Create peer-to-peer VoIP call with service hosted media -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -106,7 +107,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 2 +``` +This example will create peer-to-peer voip call with service hosted media + +### Example 2: Create peer-to-peer VoIP call with application hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -150,7 +156,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 3 +``` +This example will create peer-to-peer voip call with application hosted media + +### Example 3: Create a group call with service hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -205,7 +216,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 4 +``` +This example will create a group call with service hosted media + +### Example 4: Create a group call with application hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -260,7 +276,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 5 +``` +This example will create a group call with application hosted media + +### Example 5: Join scheduled meeting with service hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -298,7 +319,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 6 +``` +This example will join scheduled meeting with service hosted media + +### Example 6: Join scheduled meeting with application hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -335,7 +361,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 7 +``` +This example will join scheduled meeting with application hosted media + +### Example 7: Join a scheduled meeting with joinMeetingId and passcode + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -360,7 +391,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 8 +``` +This example will join a scheduled meeting with joinmeetingid and passcode + +### Example 8: Join a scheduled meeting with joinMeetingId + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -385,7 +421,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 9 +``` +This example will join a scheduled meeting with joinmeetingid + +### Example 9: Create peer-to-peer PSTN call with service hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -430,7 +471,12 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params -### EXAMPLE 10 +``` +This example will create peer-to-peer pstn call with service hosted media + +### Example 100: Create peer-to-peer PSTN call with application hosted media + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -476,6 +522,10 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params +``` +This example will create peer-to-peer pstn call with application hosted media + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 0f2cba4a18328..14a0a5d3340ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -79,8 +79,9 @@ Create a new audioRoutingGroup. | Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -97,6 +98,10 @@ receivers = @( New-MgCommunicationCallAudioRoutingGroup -CallId $callId -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCallAudioRoutingGroup Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index 78e395c7c63c7..0005dfcca158f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -66,16 +66,6 @@ This cmdlet has the following aliases, Create new navigation property to contentSharingSessions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -507,5 +497,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index 6d23996b93ae6..abc33271c6a05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to operations for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -613,5 +603,6 @@ RESULTINFO ``: resultInfo + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index d45d813b2d655..72cf6deef606c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to participants for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -868,5 +858,6 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index a29051675aeaa..47df0c1216954 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to sessions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1043,5 +1033,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index a5eb3a6dbbc04..89c393ce0d601 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1767,5 +1757,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index a3734714ec128..7fcb7c083d6fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -743,5 +733,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index c35ff956352d7..adaffc9263443 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -785,5 +775,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index d4919ec2e41cf..9ff1ec75c8a61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Create new navigation property to presences for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Activity @@ -558,5 +548,6 @@ WORKLOCATION ``: userWorkLocation + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index 5d7b430887c29..20851c17f4ca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -116,8 +116,9 @@ Create new navigation property to onlineMeetings for users | Application | OnlineMeetings.ReadWrite.All, | ## EXAMPLES +### Example 1: Create an online meeting with user token -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -130,7 +131,12 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params -### EXAMPLE 2 +``` +This example will create an online meeting with user token + +### Example 2: Create an online meeting that requires a passcode + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -146,7 +152,12 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params -### EXAMPLE 3 +``` +This example will create an online meeting that requires a passcode + +### Example 3: Create an online meeting that doesn't require a passcode + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -162,6 +173,10 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params +``` +This example will create an online meeting that doesn't require a passcode + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index b9257171bbccc..04149f7e3af19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -770,5 +760,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 51f65fba48dc6..5cfc731fa7296 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -812,5 +802,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index 9f66eb9dfba89..c36096ce17a3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -58,13 +58,18 @@ For group calls, this will only delete your call leg and the underlying group ca | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCall -CallId $callId +``` +This example shows how to use the Remove-MgCommunicationCall Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index 69272987e98d0..e5aea2ed2733a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -56,13 +56,18 @@ Delete the specified audioRoutingGroup. | Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId +``` +This example shows how to use the Remove-MgCommunicationCallAudioRoutingGroup Cmdlet. + + ## PARAMETERS ### -AudioRoutingGroupId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index 856222c5bfd53..765eb52a08aa8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property contentSharingSessions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index 44d888c04b291..c4a654ded24cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property operations for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index de85b3469b201..b9b73a020a949 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -64,19 +64,29 @@ When an invited participant is removed, any outstanding add participant request | Application | Calls.JoinGroupCall.All, Calls.JoinGroupCallasGuest.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -### EXAMPLE 2 +``` +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. + +### Example 3: Code snippet + +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId +``` +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index 5170c55ac424d..8809d3f04c232 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sessions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index e95f5ba3fd005..073934262d769 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index c823b82f2c21c..2c7dec81ea310 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -454,5 +444,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index fe3ce78217725..fbb63a8892b47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttendanceRecordId @@ -476,5 +466,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index f809abb03f67e..0c9c07033d02a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property presences for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index e85d13b59a106..cbbc6643a74f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -56,14 +56,19 @@ Delete navigation property onlineMeetings for users | Application | OnlineMeetings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId +``` +This example shows how to use the Remove-MgUserOnlineMeeting Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index b7baef36d78df..fe0649d90290d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -475,5 +465,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 43f4ecbd29b1d..ce528e7df2a08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttendanceRecordId @@ -497,5 +487,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index c5b1c95793320..73518a5446be4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property presence for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index f9702574c135d..792503250e90e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -69,8 +69,9 @@ This cmdlet has the following aliases, Allow applications to share screen content with the participants of a group call. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -80,6 +81,10 @@ $params = @{ Rename-MgCommunicationCallScreenSharingRole -CallId $callId -BodyParameter $params +``` +This example shows how to use the Rename-MgCommunicationCallScreenSharingRole Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index b99b77d3f9e77..141c6fdc647c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Send an SMS reminder to external attendees for a Teams virtual appointment. This feature requires Teams premium and attendees must have a valid United States phone number to receive SMS notifications. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -582,5 +572,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 99ec462dbc098..adc50efbc6015 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -75,16 +75,6 @@ Send an SMS notification to external attendees when a Teams virtual appointment This feature requires Teams premium. Attendees must have a valid United States phone number to receive these SMS notifications. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -583,5 +573,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 5d6f3f221f17f..4d4d0b1fd7c33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -82,8 +82,9 @@ This feature requires Teams premium and attendees must have a valid United State | Application | VirtualAppointmentNotification.Send, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -104,6 +105,10 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params +``` +This example shows how to use the Send-MgUserOnlineMeetingVirtualAppointmentReminderSm Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index 7631ca524fcda..a8ea1c7a6791a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -84,8 +84,9 @@ Attendees must have a valid United States phone number to receive these SMS noti | Application | VirtualAppointmentNotification.Send, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -106,6 +107,10 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserOnlineMeetingVirtualAppointmentSm -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params +``` +This example shows how to use the Send-MgUserOnlineMeetingVirtualAppointmentSm Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index d358d714125d0..13b0a296f218c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index 26a43afbe5d6c..73017f361ed44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Activity @@ -623,5 +613,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index 1fc73939ad6b5..ac1fa70a31ed9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -73,16 +73,6 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -568,5 +558,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 0bdbbbe4e4c56..98dad907f4797 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -566,5 +556,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index df9bf12aaa367..d8d4f0df8e4ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Set a presence status message for a user. An optional expiration date and time can be supplied. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -563,5 +553,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index 80644301a5523..edd5e6e2a669f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -79,16 +79,6 @@ Otherwise, the user's presence shows as Offline. A presence session is created as a result of a successful setPresence operation, or if the user is signed in on a Microsoft Teams client. For more details, see presence sessions and time-out and expiration. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Activity @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index e4eb5d4eda826..4d3d27db8d337 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -509,5 +499,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index a476ac210351b..4a8cd86141524 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -80,8 +80,9 @@ For more information about presence sessions, states permutations, and timeouts, | Application | Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -94,6 +95,10 @@ $params = @{ Set-MgUserPresence -UserId $userId -BodyParameter $params +``` +This example shows how to use the Set-MgUserPresence Cmdlet. + + ## PARAMETERS ### -Activity diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index 3d0d691ff06f2..9cf97d3c305db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -74,8 +74,9 @@ The automatic layer participates in the standard precedence model: Use this oper It doesn't clear manual or scheduled signals. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -87,6 +88,10 @@ $params = @{ # A UPN can also be used as -UserId. Set-MgUserPresenceAutomaticLocation -UserId $userId -BodyParameter $params +``` +This example shows how to use the Set-MgUserPresenceAutomaticLocation Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index 602729f540727..8e46567f02920 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -72,8 +72,9 @@ Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -85,6 +86,10 @@ $params = @{ # A UPN can also be used as -UserId. Set-MgUserPresenceManualLocation -UserId $userId -BodyParameter $params +``` +This example shows how to use the Set-MgUserPresenceManualLocation Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index d25a077da3a26..5c30d64bfd5cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -80,8 +80,9 @@ An optional expiration date and time can be supplied. | Application | Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Set status message with expiry date -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -100,7 +101,12 @@ $params = @{ Set-MgUserPresenceStatusMessage -UserId $userId -BodyParameter $params -### EXAMPLE 2 +``` +This example will set status message with expiry date + +### Example 2: Set status message of another user + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -115,6 +121,10 @@ $params = @{ Set-MgUserPresenceStatusMessage -UserId $userId -BodyParameter $params +``` +This example will set status message of another user + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index 802b73db3c753..6a9130fefba09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -88,8 +88,9 @@ For more details, see presence sessions and time-out and expiration. | Application | Presence.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -101,6 +102,10 @@ $params = @{ Set-MgUserPresenceUserPreferredPresence -UserId $userId -BodyParameter $params +``` +This example shows how to use the Set-MgUserPresenceUserPreferredPresence Cmdlet. + + ## PARAMETERS ### -Activity diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index b39bcebdb5b48..44955bdf97071 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -78,8 +78,9 @@ Put a participant on hold and play music in the background. | Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -96,6 +97,10 @@ $params = @{ Start-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params +``` +This example shows how to use the Start-MgCommunicationCallParticipantHoldMusic Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index 17d7b90cff834..a8b2026e9e3c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -85,8 +85,9 @@ However, it will not cancel a subscribeToTone operation because it operates inde | Application | Calls.Initiate.All, Calls.AccessMedia.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -96,6 +97,10 @@ $params = @{ Stop-MgCommunicationCallMediaProcessing -CallId $callId -BodyParameter $params +``` +This example shows how to use the Stop-MgCommunicationCallMediaProcessing Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index 523eee971ab1b..ef17f1552e518 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -78,8 +78,9 @@ Reincorporate a participant previously put on hold to the call. | Application | Calls.JoinGroupCallasGuest.All, Calls.JoinGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -89,6 +90,10 @@ $params = @{ Stop-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params +``` +This example shows how to use the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 8333798d10360..2cca9a5ca5206 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -80,8 +80,9 @@ Modify sources and receivers of an audioRoutingGroup. | Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -99,6 +100,10 @@ receivers = @( Update-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId -BodyParameter $params +``` +This example shows how to use the Update-MgCommunicationCallAudioRoutingGroup Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 1a0e64ba03279..1a4bda1e7f3fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Update the navigation property contentSharingSessions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -535,5 +525,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index ea4c0563e63e1..8ae93a9882b08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property operations in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -642,5 +632,6 @@ RESULTINFO ``: resultInfo + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index 4ff5105a24f94..89cd14dc952e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property participants in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -897,5 +887,6 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index ef2ea597a7095..96463c5302d1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property sessions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1070,5 +1060,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index a31a33350ee57..71df80d968b83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -80,8 +80,9 @@ This requires the use of the Teams policy-based recording solution. | Application | Calls.AccessMedia.All, Calls.JoinGroupCall.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -92,6 +93,10 @@ $params = @{ Update-MgCommunicationCallRecordingStatus -CallId $callId -BodyParameter $params +``` +This example shows how to use the Update-MgCommunicationCallRecordingStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index 9aa9ab1252816..9706b958fd0fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -108,16 +108,6 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetings in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -2170,5 +2160,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 07fc4b6fc7f7b..2f458ba706a85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -770,5 +760,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 8eff7cea325c5..aee6f1363793b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -814,5 +804,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index ad716af7d7f06..f41dee44241ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Update the navigation property presences in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Activity @@ -708,5 +698,6 @@ WORKLOCATION ``: userWorkLocation + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index dbb399863c50f..e2df2403c607f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -118,8 +118,9 @@ Update the navigation property onlineMeetings in users | Application | OnlineMeetings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -132,7 +133,12 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params -### EXAMPLE 2 +``` +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. + +### Example 2: Code snippet + +```powershell Import-Module Microsoft.Graph.CloudCommunications @@ -145,6 +151,10 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params +``` +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index a9de20b462d2c..07aea34644012 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -797,5 +787,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index e56d07cd443df..9ae756c252dba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -841,5 +831,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 2096cc365fa09..5f15b705791a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Update the navigation property presence in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Activity @@ -708,5 +698,6 @@ WORKLOCATION ``: userWorkLocation + From 71fd28425a8f40b85878e9ff09cdbcfdf114fac8 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:42 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- .../Get-MgCommunicationAdhocCall.md | 11 +---------- .../Get-MgCommunicationAdhocCallCount.md | 11 +---------- .../Get-MgCommunicationAdhocCallRecording.md | 11 +---------- .../Get-MgCommunicationAdhocCallRecordingContent.md | 11 +---------- .../Get-MgCommunicationAdhocCallRecordingCount.md | 11 +---------- .../Get-MgCommunicationAdhocCallRecordingDelta.md | 11 +---------- .../Get-MgCommunicationAdhocCallTranscript.md | 11 +---------- .../Get-MgCommunicationAdhocCallTranscriptContent.md | 11 +---------- .../Get-MgCommunicationAdhocCallTranscriptCount.md | 11 +---------- .../Get-MgCommunicationAdhocCallTranscriptDelta.md | 11 +---------- ...CommunicationAdhocCallTranscriptMetadataContent.md | 11 +---------- .../Get-MgCommunicationCallAudioRoutingGroupCount.md | 11 +---------- ...t-MgCommunicationCallContentSharingSessionCount.md | 11 +---------- .../Get-MgCommunicationCallCount.md | 11 +---------- .../Get-MgCommunicationCallOperationCount.md | 11 +---------- .../Get-MgCommunicationCallParticipantCount.md | 11 +---------- .../Get-MgCommunicationCallRecordCount.md | 11 +---------- .../Get-MgCommunicationCallRecordOrganizerV2.md | 11 +---------- .../Get-MgCommunicationCallRecordParticipant.md | 11 +---------- .../Get-MgCommunicationCallRecordSessionCount.md | 11 +---------- ...et-MgCommunicationCallRecordSessionSegmentCount.md | 11 +---------- ...ineMeetingAttendanceReportAttendanceRecordCount.md | 11 +---------- ...CommunicationOnlineMeetingAttendanceReportCount.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingConversation.md | 11 +---------- ...t-MgCommunicationOnlineMeetingConversationCount.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationMessage.md | 11 +---------- ...ionOnlineMeetingConversationMessageConversation.md | 11 +---------- ...municationOnlineMeetingConversationMessageCount.md | 11 +---------- ...onOnlineMeetingConversationMessageReactionCount.md | 11 +---------- ...municationOnlineMeetingConversationMessageReply.md | 11 +---------- ...lineMeetingConversationMessageReplyConversation.md | 11 +---------- ...ationOnlineMeetingConversationMessageReplyCount.md | 11 +---------- ...onOnlineMeetingConversationMessageReplyReaction.md | 11 +---------- ...ineMeetingConversationMessageReplyReactionCount.md | 11 +---------- ...nicationOnlineMeetingConversationMessageReplyTo.md | 11 +---------- ...unicationOnlineMeetingConversationOnlineMeeting.md | 11 +---------- ...eMeetingConversationOnlineMeetingAttendeeReport.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationStarter.md | 11 +---------- ...ionOnlineMeetingConversationStarterConversation.md | 11 +---------- ...icationOnlineMeetingConversationStarterReaction.md | 11 +---------- ...onOnlineMeetingConversationStarterReactionCount.md | 11 +---------- ...municationOnlineMeetingConversationStarterReply.md | 11 +---------- ...lineMeetingConversationStarterReplyConversation.md | 11 +---------- ...ationOnlineMeetingConversationStarterReplyCount.md | 11 +---------- ...onOnlineMeetingConversationStarterReplyReaction.md | 11 +---------- ...ineMeetingConversationStarterReplyReactionCount.md | 11 +---------- ...nicationOnlineMeetingConversationStarterReplyTo.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingCount.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingRecording.md | 11 +---------- ...et-MgCommunicationOnlineMeetingRecordingContent.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingRecordingCount.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingRecordingDelta.md | 11 +---------- .../Get-MgCommunicationOnlineMeetingTranscript.md | 11 +---------- ...t-MgCommunicationOnlineMeetingTranscriptContent.md | 11 +---------- ...Get-MgCommunicationOnlineMeetingTranscriptCount.md | 11 +---------- ...Get-MgCommunicationOnlineMeetingTranscriptDelta.md | 11 +---------- ...unicationOnlineMeetingTranscriptMetadataContent.md | 11 +---------- .../Get-MgCommunicationPresenceCount.md | 11 +---------- ...ineMeetingAttendanceReportAttendanceRecordCount.md | 11 +---------- .../Get-MgUserOnlineMeetingAttendanceReportCount.md | 11 +---------- .../Get-MgUserOnlineMeetingCount.md | 11 +---------- .../Get-MgUserOnlineMeetingRecordingContent.md | 11 +---------- .../Get-MgUserOnlineMeetingRecordingCount.md | 11 +---------- .../Get-MgUserOnlineMeetingRecordingDelta.md | 11 +---------- .../Get-MgUserOnlineMeetingTranscriptCount.md | 11 +---------- .../Get-MgUserOnlineMeetingTranscriptDelta.md | 11 +---------- .../New-MgCommunicationAdhocCall.md | 11 +---------- .../New-MgCommunicationAdhocCallRecording.md | 11 +---------- .../New-MgCommunicationAdhocCallTranscript.md | 11 +---------- .../New-MgCommunicationCallRecordParticipantV2.md | 11 +---------- .../New-MgCommunicationOnlineMeetingConversation.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationMessage.md | 11 +---------- ...icationOnlineMeetingConversationMessageReaction.md | 11 +---------- ...municationOnlineMeetingConversationMessageReply.md | 11 +---------- ...onOnlineMeetingConversationMessageReplyReaction.md | 11 +---------- ...icationOnlineMeetingConversationStarterReaction.md | 11 +---------- ...municationOnlineMeetingConversationStarterReply.md | 11 +---------- ...onOnlineMeetingConversationStarterReplyReaction.md | 11 +---------- .../New-MgCommunicationOnlineMeetingRecording.md | 11 +---------- .../New-MgCommunicationOnlineMeetingTranscript.md | 11 +---------- .../New-MgUserOnlineMeetingRecording.md | 11 +---------- .../New-MgUserOnlineMeetingTranscript.md | 11 +---------- .../Remove-MgCommunicationAdhocCall.md | 11 +---------- .../Remove-MgCommunicationAdhocCallRecording.md | 11 +---------- ...Remove-MgCommunicationAdhocCallRecordingContent.md | 11 +---------- .../Remove-MgCommunicationAdhocCallTranscript.md | 11 +---------- ...emove-MgCommunicationAdhocCallTranscriptContent.md | 11 +---------- ...CommunicationAdhocCallTranscriptMetadataContent.md | 11 +---------- .../Remove-MgCommunicationCallRecordOrganizerV2.md | 11 +---------- .../Remove-MgCommunicationCallRecordParticipantV2.md | 11 +---------- ...move-MgCommunicationOnlineMeetingAttendeeReport.md | 11 +---------- ...Remove-MgCommunicationOnlineMeetingConversation.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationMessage.md | 11 +---------- ...icationOnlineMeetingConversationMessageReaction.md | 11 +---------- ...municationOnlineMeetingConversationMessageReply.md | 11 +---------- ...onOnlineMeetingConversationMessageReplyReaction.md | 11 +---------- ...eMeetingConversationOnlineMeetingAttendeeReport.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationStarter.md | 11 +---------- ...icationOnlineMeetingConversationStarterReaction.md | 11 +---------- ...municationOnlineMeetingConversationStarterReply.md | 11 +---------- ...onOnlineMeetingConversationStarterReplyReaction.md | 11 +---------- .../Remove-MgCommunicationOnlineMeetingRecording.md | 11 +---------- ...ve-MgCommunicationOnlineMeetingRecordingContent.md | 11 +---------- .../Remove-MgCommunicationOnlineMeetingTranscript.md | 11 +---------- ...e-MgCommunicationOnlineMeetingTranscriptContent.md | 11 +---------- ...unicationOnlineMeetingTranscriptMetadataContent.md | 11 +---------- .../Remove-MgUserOnlineMeetingAttendeeReport.md | 11 +---------- .../Remove-MgUserOnlineMeetingRecording.md | 11 +---------- .../Remove-MgUserOnlineMeetingRecordingContent.md | 11 +---------- .../Remove-MgUserOnlineMeetingTranscript.md | 11 +---------- .../Remove-MgUserOnlineMeetingTranscriptContent.md | 11 +---------- ...ve-MgUserOnlineMeetingTranscriptMetadataContent.md | 11 +---------- .../Send-MgCommunicationCallDtmfTone.md | 11 +---------- .../Set-MgCommunicationAdhocCallRecordingContent.md | 11 +---------- .../Set-MgCommunicationAdhocCallTranscriptContent.md | 11 +---------- ...CommunicationAdhocCallTranscriptMetadataContent.md | 11 +---------- ...eMeetingConversationOnlineMeetingAttendeeReport.md | 11 +---------- ...et-MgCommunicationOnlineMeetingRecordingContent.md | 11 +---------- ...t-MgCommunicationOnlineMeetingTranscriptContent.md | 11 +---------- ...unicationOnlineMeetingTranscriptMetadataContent.md | 11 +---------- .../Set-MgUserOnlineMeetingRecordingContent.md | 11 +---------- .../Set-MgUserOnlineMeetingTranscriptContent.md | 11 +---------- ...et-MgUserOnlineMeetingTranscriptMetadataContent.md | 11 +---------- .../Update-MgCommunicationAdhocCall.md | 11 +---------- .../Update-MgCommunicationAdhocCallRecording.md | 11 +---------- .../Update-MgCommunicationAdhocCallTranscript.md | 11 +---------- .../Update-MgCommunicationCallRecordOrganizerV2.md | 11 +---------- .../Update-MgCommunicationCallRecordParticipantV2.md | 11 +---------- ...Update-MgCommunicationOnlineMeetingConversation.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationMessage.md | 11 +---------- ...icationOnlineMeetingConversationMessageReaction.md | 11 +---------- ...municationOnlineMeetingConversationMessageReply.md | 11 +---------- ...onOnlineMeetingConversationMessageReplyReaction.md | 11 +---------- ...MgCommunicationOnlineMeetingConversationStarter.md | 11 +---------- ...icationOnlineMeetingConversationStarterReaction.md | 11 +---------- ...municationOnlineMeetingConversationStarterReply.md | 11 +---------- ...onOnlineMeetingConversationStarterReplyReaction.md | 11 +---------- .../Update-MgCommunicationOnlineMeetingRecording.md | 11 +---------- .../Update-MgCommunicationOnlineMeetingTranscript.md | 11 +---------- .../Update-MgUserOnlineMeetingRecording.md | 11 +---------- .../Update-MgUserOnlineMeetingTranscript.md | 11 +---------- 141 files changed, 141 insertions(+), 1410 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index 7628d359fc5cf..a3a5642ffbe91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, Get adhocCalls from communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index 12f19fa79b996..87173c9d57a79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index cfe879c149420..268d1a652c9e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, The recordings of a call. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -729,5 +719,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 7416080d6162f..99d68a1f1d6fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index eedb7ee24c4a7..4d3d3b010b5d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index bb79ab578ba1c..9049fe3a96884 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Invoke function delta -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -587,5 +577,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index 95e5ebe067394..5291cb7e04255 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, The transcripts of a call. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -729,5 +719,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index 787d63e63ee2c..fbce17cbd511c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index 12bb8bfcae921..db425096dc399 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index d7575960b26b7..d9f8f750bd2f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Invoke function delta -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -587,5 +577,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index ade9a9a6990d8..89b855ef95af9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index e0bc04ca18586..c4be5f2a50798 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index ec048e44e2231..44c2dcdaf0c5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index e81584a8daec3..89a8ccf6947f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index 47c8062980b86..57e6d6219e94b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.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 @@ -388,5 +378,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 8dd28f20ec921..37066d48e47f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Calls.Initiate.All, Calls.AccessMedia.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index 00810bc295aca..33d926392686a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index 53a21864e5eaf..fcf4443af939c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -393,5 +383,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index d4e927fa5d91e..04988eab06778 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index 3e462a5193259..ac3bc20edfeee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 93011f5656b20..1ac212f51a951 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.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 @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index 96c6e7f2f4c0f..703fc60531ba2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.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 @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index 931c1c20e39d0..245ff3b74ab6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index 02a6f020dd55c..6e6d1f6455b77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -575,5 +565,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index fa73bc2a8d2c6..3435ba1ae7b3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index 31332aac9d4df..a955217cedcf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The messages in a Viva Engage conversation. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index 92592131ca608..b9d1da964dd0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -416,5 +406,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index a2e1ed4f61dc7..75d6569a0c589 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.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 @@ -390,5 +380,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index b9529e9eacee7..0f4847b882d6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -50,16 +50,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index daadbac5f23e0..e5aaf17091acf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of messages that are replies to this message and form a threaded discussion. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index 945486e867ca2..06c460786bab4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -437,5 +427,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index fd5792439849d..3b69f04391b59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -50,16 +50,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index af2d6a252359b..49ff34d9e3dc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -64,16 +64,6 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -660,5 +650,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index 9f59e1e241627..de805d916a149 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -50,16 +50,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 @@ -433,5 +423,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 23587d1606f4c..6fabf30fec307 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, The parent message to which this message is a reply, if it is part of a reply chain. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -473,5 +463,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index a372163b27707..3cb7253b46574 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The online meeting associated with the conversation. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -392,5 +382,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index bd7a76dd8bda1..c916f685801b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -392,5 +382,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index 43628ff1ad13e..c4a6fc5268f2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The first message in a Viva Engage conversation. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -392,5 +382,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index fcde0e989d8f3..91d9d07910145 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -394,5 +384,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index 01ee40dc76f4e..267d495706f52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -604,5 +594,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index c255aeda02c42..b29a5d8294165 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.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 @@ -390,5 +380,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index d011e92204b62..2b5ff64888e79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, A collection of messages that are replies to this message and form a threaded discussion. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -603,5 +593,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index f662de2d99eac..73c1fc314c6cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, The Viva Engage conversation to which this message belongs. This relationship establishes the thread context for the message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -416,5 +406,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index e5861d634effd..0baff67cb5d47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.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 @@ -390,5 +380,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 9e40e3f65e65f..4430b10ab1dc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index 9039d22c264d8..2295c4beb4bdf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -50,16 +50,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index 607b2d23c9e4c..8eb36ff66433f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, The parent message to which this message is a reply, if it is part of a reply chain. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index 5151d0025dbe6..a75c7f901ae53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | -## 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.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index 1992172279055..7502967e8069e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, The recordings of an online meeting. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -730,5 +720,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index 1d0fac2d1004d..d49063acf4fe9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index fb97877fbe69f..54fdadb4e6b66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index ce8fe62c3c635..b987336e01f70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Invoke function delta -## 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.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index c1d9b592ccda6..7ce6edbf1433e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, The transcripts of an online meeting. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -730,5 +720,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index ed17fc4287f2d..4f1e5e9e65fa8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index 45297269e3052..af79428f0c9d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -389,5 +379,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index 8bfc630860381..62295b84a34f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Invoke function delta -## 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.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 9683dc842bb96..91124c32ce132 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -413,5 +403,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md index d6721a01bacd9..6ea9d7b9ceaad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Presence.Read.All, Presence.ReadWrite.All, | -## 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.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 2fdb7c18d388d..2a6df00e14b78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -440,5 +430,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index e10720c7601b1..bdee48767c617 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingArtifact.Read.All, OnlineMeetingArtifact.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index e86aee7253cee..6597728032280 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetings.Read.All, OnlineMeetings.ReadWrite.All, | -## 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.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 8403411d2b048..848b9c5495169 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -58,16 +58,6 @@ Read-only. | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -441,5 +431,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index 0349dbd5371fd..0c8b712c4b60a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | -## 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.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index d22843821f238..fde29f0c0d248 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -59,16 +59,6 @@ Invoke function delta | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingRecording.Read.All, OnlineMeetingRecording.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -616,5 +606,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index d28fea29b171c..8388c963f6367 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -418,5 +408,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index d63874c5a3f3e..417571cbe2f61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -59,16 +59,6 @@ Invoke function delta | Delegated (personal Microsoft account) | Not supported | | Application | OnlineMeetingTranscript.Read.All, OnlineMeetingTranscript.Read.Chat, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -616,5 +606,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index 91d09e23561b7..e7ae449778672 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Create new navigation property to adhocCalls for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -568,5 +558,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index 4b625e60be5e7..e8dcef7c7302f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Create new navigation property to recordings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -788,5 +778,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 646533220ab49..763b57a3ecffb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -819,5 +809,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index dd75f7afd64b1..687a5150b63c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to participants_v2 for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -588,5 +578,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index 952a9dc51eca1..3081caa5393dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -54,16 +54,6 @@ This cmdlet has the following aliases, Create new navigation property to onlineMeetingConversations for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1114,5 +1104,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index 04e33ef27f05c..aa4481f174335 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Create new navigation property to messages for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -928,5 +918,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 07e1877884d9b..7d5b3f1c16ac5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -630,5 +620,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index 29dbb5131ba48..409fc21d1044d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Create new navigation property to replies for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -957,5 +947,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 530e37f12ce61..1e56911bbe001 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -659,5 +649,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index abfe058e501fb..c1bd0c6fa5050 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -603,5 +593,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index 9a67713c57844..9b327228aa1ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Create new navigation property to replies for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -930,5 +920,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 937687c15a5df..b969fb5ccc3f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -630,5 +620,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index d50505c7217e8..f6258ccb8c94f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to recordings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -789,5 +779,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index d5ec149046e9a..c7648abef2594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -819,5 +809,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index a5916a590ec0b..597a26107e152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to recordings for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -816,5 +806,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index f959453996d45..02262a0ca67bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to transcripts for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -846,5 +836,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index 90c19eaa32f28..c65c58f26e762 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property adhocCalls for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index ba18e4b59c8f4..daa069e9d3774 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property recordings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index ab4198665bf8f..0866d034d90b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index 7905723c6217c..f55ff819fcafd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property transcripts for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index c4e6020601f76..b71d48148e58a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index b18f2b1f86cba..aca5cea5fb2e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -456,5 +446,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index 79bda03493898..b04e0eaa1e9b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property organizer_v2 for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index e2494a7771f3f..8c9b2032c6f33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property participants_v2 for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index d66702161c1da..0e00155893ca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -434,5 +424,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index 6d3947e0deec9..501bd5275dbf8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property onlineMeetingConversations for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index 1b9593f18e566..44c937b388d5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property messages for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -454,5 +444,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index 7f06a60ee3a90..89577c0fb6551 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index 73cd9dca93c69..d6c1b42f418f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Delete navigation property replies for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index c5818a8ea15a0..9751333578213 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -498,5 +488,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index bd8496a80c486..d1cef97c62b99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -436,5 +426,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index 1b82a2bbe3bfc..5446cb08222bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property starter for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -433,5 +423,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index e6b94787d5a1f..bb68f48530dc8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index 031d62809e176..ebb39d4ba253c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property replies for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 3937011e164b8..2b484c8333db0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Delete navigation property reactions for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index d32c11d0a8691..ba0bee2b53097 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property recordings for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index 24b4eeb62cdbb..635591a96633a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -456,5 +446,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index 9ab2b7299d538..37ba2fc6631c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property transcripts for communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index 5892c88f8653e..1b628a6057b90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -456,5 +446,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 6b358cbcdb288..c30404e36a3db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -457,5 +447,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index e9e5d2c6cf221..abf27df0ac76f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index 23dcbb07e2f61..f5d09e3203069 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property recordings for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -475,5 +465,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index 1599c795dc926..f148eb425568b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index 5db9071991b24..8eed6b0c1f4de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property transcripts for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -475,5 +465,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index 9d2dfdf144823..1ff6d8c52a489 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index 1f9b89dd6c30e..e0927fbc81405 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index 3dfc5de966c78..b5777feb33268 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Invoke action sendDtmfTones -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -570,5 +560,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index 422690c56f9da..c6f5596888daa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 0acdd1f7dd2ff..9cbed6d73ed1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index e3fd79406f6c6..185ffb8e51cc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdhocCallId @@ -509,5 +499,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 4d2df405330d7..4978e2046fb47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content stream of the attendee report of a Microsoft Teams live event. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index c2467da539c95..f23abff31439f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index 81464ace98a8d..27aa52501b0b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -488,5 +478,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index a2bc1d120c82e..d39caa60c0037 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -509,5 +499,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index cc10c832f23e7..67648d5eccb1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the recording. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -509,5 +499,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index 025cd2857be51..86770c050dcf4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The content of the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -509,5 +499,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 76eebc25c079d..8722012f0c776 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The time-aligned metadata of the utterances in the transcript. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -530,5 +520,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 353557f9c326d..5c35cfd3fb4e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property adhocCalls in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -699,5 +689,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index 9ab92923f9531..7300ace1147fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property recordings in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -816,5 +806,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index a9530c1779dc8..85918eb01023a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property transcripts in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -846,5 +836,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index 137c6d4d2e591..5f299350776cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property organizer_v2 in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -588,5 +578,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index 580d6169a84f3..a76a493a5be8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property participants_v2 in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -615,5 +605,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index 4c412d6e507aa..0c8923dc6d73b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property onlineMeetingConversations in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1287,5 +1277,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index 880bc35b55f26..5e6fe6f2fe30c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property messages in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -957,5 +947,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index 8e3b65f6b321e..d536f23e0be26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -659,5 +649,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index ba49b50b2f15a..de9b81d0fcfe3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -85,16 +85,6 @@ This cmdlet has the following aliases, Update the navigation property replies in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -988,5 +978,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index aa4c198143026..8a82c062a6da3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -686,5 +676,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index 02ffbf5ab5e67..b924879bdd134 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property starter in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -930,5 +920,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index a1618a8d17ea8..d0f93e02cb33e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -630,5 +620,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index 5212a7e8a3461..b668074a6e680 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -83,16 +83,6 @@ This cmdlet has the following aliases, Update the navigation property replies in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -959,5 +949,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 51b5e956970ab..611e22454f76e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property reactions in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -659,5 +649,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index aac0e606be42a..d06f67a49b605 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property recordings in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -816,5 +806,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index c6132959a2ccd..7d7d8655275c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property transcripts in communications -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -846,5 +836,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index 4d62a6fd32280..f4acb4b302f78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property recordings in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -843,5 +833,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index f8beb21b81be8..9e29df3d423c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property transcripts in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -873,5 +863,6 @@ For example, in the access reviews decisions API, this property might record the + From d7dcb3790687729279f6cd989a468c182bbfabcc Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:48 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- .../Add-MgCommunicationCallLargeGalleryView.md | 4 ++-- .../Clear-MgCommunicationPresence.md | 4 ++-- .../Clear-MgUserPresence.md | 4 ++-- .../Get-MgCommunicationOnlineMeeting.md | 10 +++++----- .../Get-MgCommunicationPresenceByUserId.md | 4 ++-- .../Get-MgUserOnlineMeeting.md | 10 +++++----- .../Invoke-MgAnswerCommunicationCall.md | 8 ++++---- ...-MgCreateOrGetCommunicationOnlineMeeting.md | 10 +++++----- ...oke-MgInviteCommunicationCallParticipant.md | 6 +++--- ...unicationCallTeleconferenceDeviceQuality.md | 2 +- .../Invoke-MgMuteCommunicationCall.md | 4 ++-- ...nvoke-MgMuteCommunicationCallParticipant.md | 4 ++-- .../Invoke-MgPlayCommunicationCallPrompt.md | 6 +++--- ...Invoke-MgRecordCommunicationCallResponse.md | 18 +++++++++--------- .../Invoke-MgRedirectCommunicationCall.md | 8 ++++---- .../Invoke-MgRejectCommunicationCall.md | 4 ++-- ...nvoke-MgSubscribeCommunicationCallToTone.md | 4 ++-- .../Invoke-MgUnmuteCommunicationCall.md | 4 ++-- .../Move-MgCommunicationCall.md | 2 +- .../New-MgCommunicationCall.md | 12 ++++++------ ...ame-MgCommunicationCallScreenSharingRole.md | 2 +- .../Send-MgCommunicationCallDtmfTone.md | 8 ++++---- ...nlineMeetingVirtualAppointmentReminderSm.md | 4 ++-- ...icationOnlineMeetingVirtualAppointmentSm.md | 4 ++-- ...nlineMeetingVirtualAppointmentReminderSm.md | 4 ++-- ...-MgUserOnlineMeetingVirtualAppointmentSm.md | 4 ++-- ...MgCommunicationAdhocCallRecordingContent.md | 2 +- ...gCommunicationAdhocCallTranscriptContent.md | 2 +- ...cationAdhocCallTranscriptMetadataContent.md | 2 +- ...CommunicationOnlineMeetingAttendeeReport.md | 2 +- ...gConversationOnlineMeetingAttendeeReport.md | 2 +- ...mmunicationOnlineMeetingRecordingContent.md | 2 +- ...municationOnlineMeetingTranscriptContent.md | 2 +- ...onOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Set-MgCommunicationPresence.md | 10 +++++----- ...MgCommunicationPresenceAutomaticLocation.md | 4 ++-- ...et-MgCommunicationPresenceManualLocation.md | 4 ++-- ...Set-MgCommunicationPresenceStatusMessage.md | 2 +- ...mmunicationPresenceUserPreferredPresence.md | 8 ++++---- .../Set-MgUserOnlineMeetingAttendeeReport.md | 2 +- .../Set-MgUserOnlineMeetingRecordingContent.md | 2 +- ...Set-MgUserOnlineMeetingTranscriptContent.md | 2 +- ...erOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Set-MgUserPresence.md | 10 +++++----- .../Set-MgUserPresenceAutomaticLocation.md | 4 ++-- .../Set-MgUserPresenceManualLocation.md | 4 ++-- .../Set-MgUserPresenceStatusMessage.md | 2 +- .../Set-MgUserPresenceUserPreferredPresence.md | 8 ++++---- ...-MgCommunicationCallParticipantHoldMusic.md | 4 ++-- .../Stop-MgCommunicationCallMediaProcessing.md | 4 ++-- ...-MgCommunicationCallParticipantHoldMusic.md | 4 ++-- ...pdate-MgCommunicationCallRecordingStatus.md | 4 ++-- 52 files changed, 125 insertions(+), 125 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 20170e0da513c..780b94e25069b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -126,7 +126,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -202,7 +202,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 3a7f6b11414cf..dab9988aa92ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -103,7 +103,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -398,7 +398,7 @@ HelpMessage: '' ### -SessionId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index 616f6bc572025..6db33c355e887 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -127,7 +127,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -395,7 +395,7 @@ HelpMessage: '' ### -SessionId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 5b1c5d12d37d2..e25f7efb42c09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -139,7 +139,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -249,7 +249,7 @@ HelpMessage: '' ### -EndDateTime -. + ```yaml Type: System.DateTime @@ -304,7 +304,7 @@ HelpMessage: '' ### -ExternalId -. + ```yaml Type: System.String @@ -678,7 +678,7 @@ HelpMessage: '' ### -StartDateTime -. + ```yaml Type: System.DateTime @@ -699,7 +699,7 @@ HelpMessage: '' ### -Subject -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 9b2993d484917..6a2fc5ed2a5a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -101,7 +101,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -229,7 +229,7 @@ HelpMessage: '' ### -Ids -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index 347d5ce39856d..0e83d42cd9914 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -199,7 +199,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -321,7 +321,7 @@ HelpMessage: '' ### -EndDateTime -. + ```yaml Type: System.DateTime @@ -382,7 +382,7 @@ HelpMessage: '' ### -ExternalId -. + ```yaml Type: System.String @@ -780,7 +780,7 @@ HelpMessage: '' ### -StartDateTime -. + ```yaml Type: System.DateTime @@ -807,7 +807,7 @@ HelpMessage: '' ### -Subject -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index afe213036d866..6153aeb4e4b7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -167,7 +167,7 @@ This example will answer a policy-based recording call ### -AcceptedModalities -. + ```yaml Type: System.String[] @@ -221,7 +221,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -270,7 +270,7 @@ HelpMessage: '' ### -CallbackUri -. + ```yaml Type: System.String @@ -491,7 +491,7 @@ HelpMessage: '' ### -ParticipantCapacity -. + ```yaml Type: System.Int32 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index b3eb1205f4848..01eed3119637a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -77,7 +77,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -164,7 +164,7 @@ HelpMessage: '' ### -EndDateTime -. + ```yaml Type: System.DateTime @@ -185,7 +185,7 @@ HelpMessage: '' ### -ExternalId -. + ```yaml Type: System.String @@ -376,7 +376,7 @@ HelpMessage: '' ### -StartDateTime -. + ```yaml Type: System.DateTime @@ -397,7 +397,7 @@ HelpMessage: '' ### -Subject -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 74f86c5c554b5..90929117a51b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -266,7 +266,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -342,7 +342,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String @@ -482,7 +482,7 @@ HelpMessage: '' ### -Participants -. + To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 6157008c6fd1a..85801d6801c4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -179,7 +179,7 @@ HelpMessage: '' ### -Body -. + To construct, see NOTES section for BODY properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 04ecf883e83c7..dbb82893695c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -128,7 +128,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -204,7 +204,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 0d4f6b48a06e0..72f9754e462f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -129,7 +129,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +205,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index d97628fd2191c..d2374600fda38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -137,7 +137,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -213,7 +213,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String @@ -353,7 +353,7 @@ HelpMessage: '' ### -Prompts -. + ```yaml Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 3ac140f6a063c..a4b1d8b57626e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -148,7 +148,7 @@ HelpMessage: '' ### -BargeInAllowed -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -175,7 +175,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -251,7 +251,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String @@ -363,7 +363,7 @@ HelpMessage: '' ### -InitialSilenceTimeoutInSeconds -. + ```yaml Type: System.Int32 @@ -418,7 +418,7 @@ HelpMessage: '' ### -MaxRecordDurationInSeconds -. + ```yaml Type: System.Int32 @@ -445,7 +445,7 @@ HelpMessage: '' ### -MaxSilenceTimeoutInSeconds -. + ```yaml Type: System.Int32 @@ -472,7 +472,7 @@ HelpMessage: '' ### -PlayBeep -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -499,7 +499,7 @@ HelpMessage: '' ### -Prompts -. + ```yaml Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[] @@ -611,7 +611,7 @@ HelpMessage: '' ### -StopTones -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index 3d32826c1cc85..3c60f07f0a748 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -137,7 +137,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -186,7 +186,7 @@ HelpMessage: '' ### -CallbackUri -. + ```yaml Type: System.String @@ -459,7 +459,7 @@ HelpMessage: '' ### -Targets -. + To construct, see NOTES section for TARGETS properties and create a hash table. ```yaml @@ -487,7 +487,7 @@ HelpMessage: '' ### -Timeout -. + ```yaml Type: System.Int32 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 62b9e5e9e04b4..5416fde44ebfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -144,7 +144,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -193,7 +193,7 @@ HelpMessage: '' ### -CallbackUri -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 553e778056cc1..23b63c3fc740d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -116,7 +116,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -192,7 +192,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index b837a65fad3ea..63f9423a53326 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -128,7 +128,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -204,7 +204,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index 020fbd389bf8e..7e3b76cf6d658 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -244,7 +244,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index 367dc42610a7e..1d09729a12918 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -551,7 +551,7 @@ HelpMessage: '' ### -AudioRoutingGroups -. + To construct, see NOTES section for AUDIOROUTINGGROUPS properties and create a hash table. ```yaml @@ -749,7 +749,7 @@ HelpMessage: '' ### -ContentSharingSessions -. + To construct, see NOTES section for CONTENTSHARINGSESSIONS properties and create a hash table. ```yaml @@ -963,7 +963,7 @@ HelpMessage: '' ### -MyParticipantId -. + ```yaml Type: System.String @@ -984,7 +984,7 @@ HelpMessage: '' ### -Operations -. + To construct, see NOTES section for OPERATIONS properties and create a hash table. ```yaml @@ -1006,7 +1006,7 @@ HelpMessage: '' ### -Participants -. + To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ```yaml @@ -1244,7 +1244,7 @@ HelpMessage: '' ### -TenantId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 792503250e90e..37b12e990d4b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -116,7 +116,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index b5777feb33268..88521860dc88b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -176,7 +176,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String @@ -225,7 +225,7 @@ HelpMessage: '' ### -DelayBetweenTonesMS -. + ```yaml Type: System.Int32 @@ -428,7 +428,7 @@ HelpMessage: '' ### -Tones -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 141c6fdc647c7..71dc054aa248b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -105,7 +105,7 @@ HelpMessage: '' ### -Attendees -. + To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -133,7 +133,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index adc50efbc6015..0f8ed7f235804 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -106,7 +106,7 @@ HelpMessage: '' ### -Attendees -. + To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -134,7 +134,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 4d4d0b1fd7c33..0335c0d61b9e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Attendees -. + To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -168,7 +168,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index a8ea1c7a6791a..97c38c85c1ecc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -142,7 +142,7 @@ HelpMessage: '' ### -Attendees -. + To construct, see NOTES section for ATTENDEES properties and create a hash table. ```yaml @@ -170,7 +170,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index c6f5596888daa..815113e694a87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -161,7 +161,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 9cbed6d73ed1f..ef1d44fd0be9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -161,7 +161,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index 185ffb8e51cc9..0db16309efe84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -161,7 +161,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index 13b0a296f218c..77153caba14ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -119,7 +119,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 4978e2046fb47..56a91d1f19465 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -119,7 +119,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index f23abff31439f..54cca9d9ec116 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index 27aa52501b0b5..b17c537b14d64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index d39caa60c0037..b269891f0cb22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index 73017f361ed44..ca370e89852bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -76,7 +76,7 @@ For more information about presence sessions, states permutations, and timeouts, ### -Activity -. + ```yaml Type: System.String @@ -130,7 +130,7 @@ HelpMessage: '' ### -Availability -. + ```yaml Type: System.String @@ -157,7 +157,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -228,7 +228,7 @@ HelpMessage: '' ### -ExpirationDuration -. + ```yaml Type: System.TimeSpan @@ -479,7 +479,7 @@ HelpMessage: '' ### -SessionId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index ac1fa70a31ed9..cc0785b0ee40d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -104,7 +104,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -287,7 +287,7 @@ HelpMessage: '' ### -PlaceId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 98dad907f4797..95a4fd236752f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -102,7 +102,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -285,7 +285,7 @@ HelpMessage: '' ### -PlaceId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index d8d4f0df8e4ea..9a9fb4f95d6b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -102,7 +102,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index edd5e6e2a669f..0e17f432ee59d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -83,7 +83,7 @@ For more details, see presence sessions and time-out and expiration. ### -Activity -. + ```yaml Type: System.String @@ -137,7 +137,7 @@ HelpMessage: '' ### -Availability -. + ```yaml Type: System.String @@ -164,7 +164,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -235,7 +235,7 @@ HelpMessage: '' ### -ExpirationDuration -. + ```yaml Type: System.TimeSpan diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index 4d3d27db8d337..77aa8dda3479c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -119,7 +119,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index 67648d5eccb1f..3269d2ae78214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index 86770c050dcf4..cf6a57b5e5d5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 8722012f0c776..26ecd3846285d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -140,7 +140,7 @@ HelpMessage: '' ### -Data -. + ```yaml Type: System.IO.Stream diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index 4a8cd86141524..a220ca790ce45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -103,7 +103,7 @@ This example shows how to use the Set-MgUserPresence Cmdlet. ### -Activity -. + ```yaml Type: System.String @@ -157,7 +157,7 @@ HelpMessage: '' ### -Availability -. + ```yaml Type: System.String @@ -184,7 +184,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -255,7 +255,7 @@ HelpMessage: '' ### -ExpirationDuration -. + ```yaml Type: System.TimeSpan @@ -479,7 +479,7 @@ HelpMessage: '' ### -SessionId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index 9cf97d3c305db..a96f142a960b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -123,7 +123,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -306,7 +306,7 @@ HelpMessage: '' ### -PlaceId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index 8e46567f02920..d86726aa098eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -121,7 +121,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -304,7 +304,7 @@ HelpMessage: '' ### -PlaceId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 5c30d64bfd5cc..964e397c0a2b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -156,7 +156,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index 6a9130fefba09..8f61a461302e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -110,7 +110,7 @@ This example shows how to use the Set-MgUserPresenceUserPreferredPresence Cmdlet ### -Activity -. + ```yaml Type: System.String @@ -164,7 +164,7 @@ HelpMessage: '' ### -Availability -. + ```yaml Type: System.String @@ -191,7 +191,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -262,7 +262,7 @@ HelpMessage: '' ### -ExpirationDuration -. + ```yaml Type: System.TimeSpan diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index 44955bdf97071..a1872a96bb503 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -132,7 +132,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -208,7 +208,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index a8b2026e9e3c2..76a7946bbd121 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -132,7 +132,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -208,7 +208,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index ef17f1552e518..df89babbe5c95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -201,7 +201,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 71df80d968b83..ae6f8f7d47cd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -128,7 +128,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -204,7 +204,7 @@ HelpMessage: '' ### -ClientContext -. + ```yaml Type: System.String From b49f7457d86ff96dd3c393e15bc66838e92ef1ad Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:02 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Add-MgCommunicationCallLargeGalleryView.md | 4 ++-- .../Clear-MgCommunicationPresence.md | 4 ++-- .../Clear-MgCommunicationPresenceAutomaticLocation.md | 4 ++-- .../Clear-MgCommunicationPresenceLocation.md | 4 ++-- .../Clear-MgCommunicationPresenceUserPreferredPresence.md | 4 ++-- .../Clear-MgUserPresence.md | 4 ++-- .../Clear-MgUserPresenceAutomaticLocation.md | 4 ++-- .../Clear-MgUserPresenceLocation.md | 4 ++-- .../Clear-MgUserPresenceUserPreferredPresence.md | 4 ++-- .../Get-MgCommunicationAdhocCall.md | 2 +- .../Get-MgCommunicationAdhocCallCount.md | 2 +- .../Get-MgCommunicationAdhocCallRecording.md | 2 +- .../Get-MgCommunicationAdhocCallRecordingContent.md | 2 +- .../Get-MgCommunicationAdhocCallRecordingCount.md | 2 +- .../Get-MgCommunicationAdhocCallRecordingDelta.md | 2 +- .../Get-MgCommunicationAdhocCallTranscript.md | 2 +- .../Get-MgCommunicationAdhocCallTranscriptContent.md | 2 +- .../Get-MgCommunicationAdhocCallTranscriptCount.md | 2 +- .../Get-MgCommunicationAdhocCallTranscriptDelta.md | 2 +- ...t-MgCommunicationAdhocCallTranscriptMetadataContent.md | 2 +- .../Get-MgCommunicationCall.md | 4 ++-- .../Get-MgCommunicationCallAudioRoutingGroup.md | 6 +++--- .../Get-MgCommunicationCallAudioRoutingGroupCount.md | 2 +- .../Get-MgCommunicationCallContentSharingSession.md | 6 +++--- .../Get-MgCommunicationCallContentSharingSessionCount.md | 2 +- .../Get-MgCommunicationCallCount.md | 2 +- .../Get-MgCommunicationCallOperation.md | 4 ++-- .../Get-MgCommunicationCallOperationCount.md | 2 +- .../Get-MgCommunicationCallParticipant.md | 6 +++--- .../Get-MgCommunicationCallParticipantCount.md | 2 +- .../Get-MgCommunicationCallRecord.md | 4 ++-- .../Get-MgCommunicationCallRecordCount.md | 2 +- .../Get-MgCommunicationCallRecordOrganizerV2.md | 2 +- .../Get-MgCommunicationCallRecordParticipant.md | 2 +- .../Get-MgCommunicationCallRecordParticipantV2.md | 4 ++-- .../Get-MgCommunicationCallRecordSession.md | 4 ++-- .../Get-MgCommunicationCallRecordSessionCount.md | 2 +- .../Get-MgCommunicationCallRecordSessionSegmentCount.md | 2 +- .../Get-MgCommunicationOnlineMeeting.md | 6 +++--- .../Get-MgCommunicationOnlineMeetingAttendanceReport.md | 2 +- ...cationOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- ...nOnlineMeetingAttendanceReportAttendanceRecordCount.md | 2 +- ...t-MgCommunicationOnlineMeetingAttendanceReportCount.md | 2 +- .../Get-MgCommunicationOnlineMeetingAttendeeReport.md | 2 +- .../Get-MgCommunicationOnlineMeetingConversation.md | 2 +- .../Get-MgCommunicationOnlineMeetingConversationCount.md | 2 +- ...Get-MgCommunicationOnlineMeetingConversationMessage.md | 2 +- ...icationOnlineMeetingConversationMessageConversation.md | 2 +- ...gCommunicationOnlineMeetingConversationMessageCount.md | 2 +- ...mmunicationOnlineMeetingConversationMessageReaction.md | 4 ++-- ...cationOnlineMeetingConversationMessageReactionCount.md | 2 +- ...gCommunicationOnlineMeetingConversationMessageReply.md | 2 +- ...onOnlineMeetingConversationMessageReplyConversation.md | 2 +- ...unicationOnlineMeetingConversationMessageReplyCount.md | 2 +- ...cationOnlineMeetingConversationMessageReplyReaction.md | 2 +- ...nOnlineMeetingConversationMessageReplyReactionCount.md | 2 +- ...ommunicationOnlineMeetingConversationMessageReplyTo.md | 2 +- ...CommunicationOnlineMeetingConversationOnlineMeeting.md | 2 +- ...nlineMeetingConversationOnlineMeetingAttendeeReport.md | 2 +- ...Get-MgCommunicationOnlineMeetingConversationStarter.md | 2 +- ...icationOnlineMeetingConversationStarterConversation.md | 2 +- ...mmunicationOnlineMeetingConversationStarterReaction.md | 2 +- ...cationOnlineMeetingConversationStarterReactionCount.md | 2 +- ...gCommunicationOnlineMeetingConversationStarterReply.md | 2 +- ...onOnlineMeetingConversationStarterReplyConversation.md | 2 +- ...unicationOnlineMeetingConversationStarterReplyCount.md | 2 +- ...cationOnlineMeetingConversationStarterReplyReaction.md | 2 +- ...nOnlineMeetingConversationStarterReplyReactionCount.md | 2 +- ...ommunicationOnlineMeetingConversationStarterReplyTo.md | 2 +- .../Get-MgCommunicationOnlineMeetingCount.md | 2 +- .../Get-MgCommunicationOnlineMeetingMessage.md | 4 ++-- .../Get-MgCommunicationOnlineMeetingRecording.md | 4 ++-- .../Get-MgCommunicationOnlineMeetingRecordingContent.md | 2 +- .../Get-MgCommunicationOnlineMeetingRecordingCount.md | 2 +- .../Get-MgCommunicationOnlineMeetingRecordingDelta.md | 2 +- .../Get-MgCommunicationOnlineMeetingTranscript.md | 4 ++-- .../Get-MgCommunicationOnlineMeetingTranscriptContent.md | 2 +- .../Get-MgCommunicationOnlineMeetingTranscriptCount.md | 2 +- .../Get-MgCommunicationOnlineMeetingTranscriptDelta.md | 2 +- ...CommunicationOnlineMeetingTranscriptMetadataContent.md | 2 +- ...municationOnlineMeetingVirtualAppointmentJoinWebUrl.md | 4 ++-- .../Get-MgCommunicationPresence.md | 4 ++-- .../Get-MgCommunicationPresenceByUserId.md | 4 ++-- .../Get-MgCommunicationPresenceCount.md | 2 +- .../Get-MgUserOnlineMeeting.md | 4 ++-- .../Get-MgUserOnlineMeetingAttendanceReport.md | 2 +- ...MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- ...rOnlineMeetingAttendanceReportAttendanceRecordCount.md | 2 +- .../Get-MgUserOnlineMeetingAttendanceReportCount.md | 2 +- .../Get-MgUserOnlineMeetingAttendeeReport.md | 2 +- .../Get-MgUserOnlineMeetingCount.md | 2 +- .../Get-MgUserOnlineMeetingRecording.md | 6 +++--- .../Get-MgUserOnlineMeetingRecordingContent.md | 2 +- .../Get-MgUserOnlineMeetingRecordingCount.md | 2 +- .../Get-MgUserOnlineMeetingRecordingDelta.md | 2 +- .../Get-MgUserOnlineMeetingTranscript.md | 8 ++++---- .../Get-MgUserOnlineMeetingTranscriptContent.md | 4 ++-- .../Get-MgUserOnlineMeetingTranscriptCount.md | 2 +- .../Get-MgUserOnlineMeetingTranscriptDelta.md | 2 +- .../Get-MgUserOnlineMeetingTranscriptMetadataContent.md | 4 ++-- ...Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md | 4 ++-- .../Get-MgUserPresence.md | 4 ++-- .../Invoke-MgAnswerCommunicationCall.md | 4 ++-- .../Invoke-MgCreateOrGetCommunicationOnlineMeeting.md | 4 ++-- .../Invoke-MgInviteCommunicationCallParticipant.md | 4 ++-- .../Invoke-MgKeepCommunicationCallAlive.md | 4 ++-- ...e-MgLogCommunicationCallTeleconferenceDeviceQuality.md | 4 ++-- .../Invoke-MgMuteCommunicationCall.md | 4 ++-- .../Invoke-MgMuteCommunicationCallParticipant.md | 4 ++-- .../Invoke-MgPlayCommunicationCallPrompt.md | 4 ++-- .../Invoke-MgRecordCommunicationCallResponse.md | 4 ++-- .../Invoke-MgRedirectCommunicationCall.md | 4 ++-- .../Invoke-MgRejectCommunicationCall.md | 4 ++-- .../Invoke-MgSubscribeCommunicationCallToTone.md | 4 ++-- .../Invoke-MgUnmuteCommunicationCall.md | 4 ++-- .../Move-MgCommunicationCall.md | 4 ++-- .../New-MgCommunicationAdhocCall.md | 2 +- .../New-MgCommunicationAdhocCallRecording.md | 2 +- .../New-MgCommunicationAdhocCallTranscript.md | 2 +- .../New-MgCommunicationCall.md | 4 ++-- .../New-MgCommunicationCallAudioRoutingGroup.md | 4 ++-- .../New-MgCommunicationCallContentSharingSession.md | 2 +- .../New-MgCommunicationCallOperation.md | 2 +- .../New-MgCommunicationCallParticipant.md | 2 +- .../New-MgCommunicationCallRecordParticipantV2.md | 2 +- .../New-MgCommunicationCallRecordSession.md | 2 +- .../New-MgCommunicationOnlineMeeting.md | 2 +- .../New-MgCommunicationOnlineMeetingAttendanceReport.md | 2 +- ...cationOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../New-MgCommunicationOnlineMeetingConversation.md | 2 +- ...New-MgCommunicationOnlineMeetingConversationMessage.md | 2 +- ...mmunicationOnlineMeetingConversationMessageReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationMessageReply.md | 2 +- ...cationOnlineMeetingConversationMessageReplyReaction.md | 2 +- ...mmunicationOnlineMeetingConversationStarterReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationStarterReply.md | 2 +- ...cationOnlineMeetingConversationStarterReplyReaction.md | 2 +- .../New-MgCommunicationOnlineMeetingRecording.md | 2 +- .../New-MgCommunicationOnlineMeetingTranscript.md | 2 +- .../New-MgCommunicationPresence.md | 2 +- .../New-MgUserOnlineMeeting.md | 2 +- .../New-MgUserOnlineMeetingAttendanceReport.md | 2 +- ...MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../New-MgUserOnlineMeetingRecording.md | 2 +- .../New-MgUserOnlineMeetingTranscript.md | 2 +- .../Remove-MgCommunicationAdhocCall.md | 2 +- .../Remove-MgCommunicationAdhocCallRecording.md | 2 +- .../Remove-MgCommunicationAdhocCallRecordingContent.md | 2 +- .../Remove-MgCommunicationAdhocCallTranscript.md | 2 +- .../Remove-MgCommunicationAdhocCallTranscriptContent.md | 2 +- ...e-MgCommunicationAdhocCallTranscriptMetadataContent.md | 2 +- .../Remove-MgCommunicationCall.md | 4 ++-- .../Remove-MgCommunicationCallAudioRoutingGroup.md | 4 ++-- .../Remove-MgCommunicationCallContentSharingSession.md | 2 +- .../Remove-MgCommunicationCallOperation.md | 2 +- .../Remove-MgCommunicationCallParticipant.md | 4 ++-- .../Remove-MgCommunicationCallRecordOrganizerV2.md | 2 +- .../Remove-MgCommunicationCallRecordParticipantV2.md | 2 +- .../Remove-MgCommunicationCallRecordSession.md | 2 +- .../Remove-MgCommunicationOnlineMeeting.md | 2 +- ...Remove-MgCommunicationOnlineMeetingAttendanceReport.md | 2 +- ...cationOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../Remove-MgCommunicationOnlineMeetingAttendeeReport.md | 2 +- .../Remove-MgCommunicationOnlineMeetingConversation.md | 2 +- ...ove-MgCommunicationOnlineMeetingConversationMessage.md | 2 +- ...mmunicationOnlineMeetingConversationMessageReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationMessageReply.md | 2 +- ...cationOnlineMeetingConversationMessageReplyReaction.md | 2 +- ...nlineMeetingConversationOnlineMeetingAttendeeReport.md | 2 +- ...ove-MgCommunicationOnlineMeetingConversationStarter.md | 2 +- ...mmunicationOnlineMeetingConversationStarterReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationStarterReply.md | 2 +- ...cationOnlineMeetingConversationStarterReplyReaction.md | 2 +- .../Remove-MgCommunicationOnlineMeetingRecording.md | 2 +- ...Remove-MgCommunicationOnlineMeetingRecordingContent.md | 2 +- .../Remove-MgCommunicationOnlineMeetingTranscript.md | 2 +- ...emove-MgCommunicationOnlineMeetingTranscriptContent.md | 2 +- ...CommunicationOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Remove-MgCommunicationPresence.md | 2 +- .../Remove-MgUserOnlineMeeting.md | 2 +- .../Remove-MgUserOnlineMeetingAttendanceReport.md | 2 +- ...MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../Remove-MgUserOnlineMeetingAttendeeReport.md | 2 +- .../Remove-MgUserOnlineMeetingRecording.md | 2 +- .../Remove-MgUserOnlineMeetingRecordingContent.md | 2 +- .../Remove-MgUserOnlineMeetingTranscript.md | 2 +- .../Remove-MgUserOnlineMeetingTranscriptContent.md | 2 +- ...Remove-MgUserOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Remove-MgUserPresence.md | 2 +- .../Rename-MgCommunicationCallScreenSharingRole.md | 4 ++-- .../Send-MgCommunicationCallDtmfTone.md | 2 +- ...municationOnlineMeetingVirtualAppointmentReminderSm.md | 4 ++-- ...nd-MgCommunicationOnlineMeetingVirtualAppointmentSm.md | 4 ++-- ...end-MgUserOnlineMeetingVirtualAppointmentReminderSm.md | 4 ++-- .../Send-MgUserOnlineMeetingVirtualAppointmentSm.md | 4 ++-- .../Set-MgCommunicationAdhocCallRecordingContent.md | 2 +- .../Set-MgCommunicationAdhocCallTranscriptContent.md | 2 +- ...t-MgCommunicationAdhocCallTranscriptMetadataContent.md | 2 +- .../Set-MgCommunicationOnlineMeetingAttendeeReport.md | 2 +- ...nlineMeetingConversationOnlineMeetingAttendeeReport.md | 2 +- .../Set-MgCommunicationOnlineMeetingRecordingContent.md | 2 +- .../Set-MgCommunicationOnlineMeetingTranscriptContent.md | 2 +- ...CommunicationOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Set-MgCommunicationPresence.md | 4 ++-- .../Set-MgCommunicationPresenceAutomaticLocation.md | 4 ++-- .../Set-MgCommunicationPresenceManualLocation.md | 4 ++-- .../Set-MgCommunicationPresenceStatusMessage.md | 4 ++-- .../Set-MgCommunicationPresenceUserPreferredPresence.md | 4 ++-- .../Set-MgUserOnlineMeetingAttendeeReport.md | 2 +- .../Set-MgUserOnlineMeetingRecordingContent.md | 2 +- .../Set-MgUserOnlineMeetingTranscriptContent.md | 2 +- .../Set-MgUserOnlineMeetingTranscriptMetadataContent.md | 2 +- .../Set-MgUserPresence.md | 4 ++-- .../Set-MgUserPresenceAutomaticLocation.md | 4 ++-- .../Set-MgUserPresenceManualLocation.md | 4 ++-- .../Set-MgUserPresenceStatusMessage.md | 4 ++-- .../Set-MgUserPresenceUserPreferredPresence.md | 4 ++-- .../Start-MgCommunicationCallParticipantHoldMusic.md | 4 ++-- .../Stop-MgCommunicationCallMediaProcessing.md | 4 ++-- .../Stop-MgCommunicationCallParticipantHoldMusic.md | 4 ++-- .../Update-MgCommunicationAdhocCall.md | 2 +- .../Update-MgCommunicationAdhocCallRecording.md | 2 +- .../Update-MgCommunicationAdhocCallTranscript.md | 2 +- .../Update-MgCommunicationCallAudioRoutingGroup.md | 4 ++-- .../Update-MgCommunicationCallContentSharingSession.md | 2 +- .../Update-MgCommunicationCallOperation.md | 2 +- .../Update-MgCommunicationCallParticipant.md | 2 +- .../Update-MgCommunicationCallRecordOrganizerV2.md | 2 +- .../Update-MgCommunicationCallRecordParticipantV2.md | 2 +- .../Update-MgCommunicationCallRecordSession.md | 2 +- .../Update-MgCommunicationCallRecordingStatus.md | 4 ++-- .../Update-MgCommunicationOnlineMeeting.md | 2 +- ...Update-MgCommunicationOnlineMeetingAttendanceReport.md | 2 +- ...cationOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../Update-MgCommunicationOnlineMeetingConversation.md | 2 +- ...ate-MgCommunicationOnlineMeetingConversationMessage.md | 2 +- ...mmunicationOnlineMeetingConversationMessageReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationMessageReply.md | 2 +- ...cationOnlineMeetingConversationMessageReplyReaction.md | 2 +- ...ate-MgCommunicationOnlineMeetingConversationStarter.md | 2 +- ...mmunicationOnlineMeetingConversationStarterReaction.md | 2 +- ...gCommunicationOnlineMeetingConversationStarterReply.md | 2 +- ...cationOnlineMeetingConversationStarterReplyReaction.md | 2 +- .../Update-MgCommunicationOnlineMeetingRecording.md | 2 +- .../Update-MgCommunicationOnlineMeetingTranscript.md | 2 +- .../Update-MgCommunicationPresence.md | 2 +- .../Update-MgUserOnlineMeeting.md | 2 +- .../Update-MgUserOnlineMeetingAttendanceReport.md | 2 +- ...MgUserOnlineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../Update-MgUserOnlineMeetingRecording.md | 2 +- .../Update-MgUserOnlineMeetingTranscript.md | 2 +- .../Update-MgUserPresence.md | 2 +- 252 files changed, 330 insertions(+), 330 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 780b94e25069b..9d518c8b690de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -509,8 +509,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview) -- [](https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0) +- [Add-MgCommunicationCallLargeGalleryView](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index dab9988aa92ae..26a10ea25ce32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -507,8 +507,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence) -- [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) +- [Clear-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index 3fde41520e72e..754f8e3588038 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md @@ -382,8 +382,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation) -- [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) +- [Clear-MgCommunicationPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index 879674d6c0a71..4c17b97a58ad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md @@ -380,8 +380,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation) -- [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) +- [Clear-MgCommunicationPresenceLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index 4b83b06716cc0..de67af742f53a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md @@ -380,8 +380,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence) -- [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) +- [Clear-MgCommunicationPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index 6db33c355e887..4bc2da9ac6fc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -531,8 +531,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence) -- [](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) +- [Clear-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index d769c07376fb4..72ae858b55f31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -396,8 +396,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation) -- [](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) +- [Clear-MgUserPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index fc06dee6913c4..2fabfea87913e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -394,8 +394,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation) -- [](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) +- [Clear-MgUserPresenceLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index bd78fff34a791..ba14717a3412f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -401,8 +401,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence) -- [](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) +- [Clear-MgUserPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index a3a5642ffbe91..b47dbb4aec4b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall) +- [Get-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index 87173c9d57a79..2680c52912b57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount) +- [Get-MgCommunicationAdhocCallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index 268d1a652c9e0..445153307b780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -698,7 +698,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording) +- [Get-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 99d68a1f1d6fc..e77efb1ead508 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent) +- [Get-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index 4d3d3b010b5d3..016c01974abc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount) +- [Get-MgCommunicationAdhocCallRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index 9049fe3a96884..2bf924f3a957b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta) +- [Get-MgCommunicationAdhocCallRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index 5291cb7e04255..9074eefdc39dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -698,7 +698,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript) +- [Get-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index fbce17cbd511c..1f7fe1252588b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent) +- [Get-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index db425096dc399..b9d44d0ac3e6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount) +- [Get-MgCommunicationAdhocCallTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index d9f8f750bd2f5..298d97af81d0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta) +- [Get-MgCommunicationAdhocCallTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index 89b855ef95af9..7be1672e96d9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent) +- [Get-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index 11a99a7e54208..618dfb544712e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -391,8 +391,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0) +- [Get-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 3e98022eaab2d..0a8a6670d6f47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -592,9 +592,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup) -- [](https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0) +- [Get-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index c4be5f2a50798..94a207206744d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount) +- [Get-MgCommunicationCallAudioRoutingGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 1a1a155985c9d..219b840e50493 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -596,9 +596,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession) -- [](https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0) +- [Get-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index 44c2dcdaf0c5d..ac4ead3c391aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount) +- [Get-MgCommunicationCallContentSharingSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index 89a8ccf6947f7..478bd3002ee3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount) +- [Get-MgCommunicationCallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 5b91db3afe981..b9e78c4c799bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md @@ -584,8 +584,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation) -- [](https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0) +- [Get-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index 57e6d6219e94b..67b5eb557d36c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount) +- [Get-MgCommunicationCallOperationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index 0a7d3e245256d..a49771b336720 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -592,9 +592,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant) -- [](https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0) +- [Get-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 37066d48e47f3..cf600d5ccc7ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount) +- [Get-MgCommunicationCallParticipantCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index 868364d6567fb..d854463dba393 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -388,8 +388,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord) -- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0) +- [Get-MgCommunicationCallRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord) +- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index 33d926392686a..692e5e8e97e58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount) +- [Get-MgCommunicationCallRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index fcf4443af939c..9e55a656fd2e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -362,7 +362,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2) +- [Get-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index 04988eab06778..43ce508180dde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant) +- [Get-MgCommunicationCallRecordParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index fffe04e724dfd..6d13aca0b2967 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md @@ -584,8 +584,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2) -- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0) +- [Get-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2) +- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index 6d8f891b25c82..594970c045389 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -601,8 +601,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession) -- [](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0) +- [Get-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index ac3bc20edfeee..56b08b46d53ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount) +- [Get-MgCommunicationCallRecordSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 1ac212f51a951..0e1da61b7c0c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount) +- [Get-MgCommunicationCallRecordSessionSegmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index e25f7efb42c09..40e736e053d00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -871,9 +871,9 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index 48d607382f436..a680499739023 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md @@ -573,7 +573,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport) +- [Get-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 589202c0199d0..d8661ede76c1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -601,7 +601,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord) +- [Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index 703fc60531ba2..03aed74324d92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount) +- [Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index 245ff3b74ab6c..9e7a401441773 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount) +- [Get-MgCommunicationOnlineMeetingAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index 2495a2ced482b..123a55dc52681 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md @@ -359,7 +359,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport) +- [Get-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index 6e6d1f6455b77..ac44f1bc5145b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -544,7 +544,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation) +- [Get-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index 3435ba1ae7b3f..de0303f6a1957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount) +- [Get-MgCommunicationOnlineMeetingConversationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index a955217cedcf0..34ffaae0910a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage) +- [Get-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index b9d1da964dd0b..822d23eb8f0af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -385,7 +385,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation) +- [Get-MgCommunicationOnlineMeetingConversationMessageConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index 75d6569a0c589..fc8fffedf6edf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md @@ -359,7 +359,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount) +- [Get-MgCommunicationOnlineMeetingConversationMessageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index 1349550dbbc98..015fcf1679780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -613,8 +613,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction) -- [](https://learn.microsoft.com/graph/api/engagementconversationdiscussionmessage-list-reactions?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction) +- [Graph API Reference](https://learn.microsoft.com/graph/api/engagementconversationdiscussionmessage-list-reactions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index 0f4847b882d6c..4f7154c1bb8c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount) +- [Get-MgCommunicationOnlineMeetingConversationMessageReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index e5aaf17091acf..15276179aba55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply) +- [Get-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index 06c460786bab4..4d2dfdb05b285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -406,7 +406,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation) +- [Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index 3b69f04391b59..66510b8bcb861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount) +- [Get-MgCommunicationOnlineMeetingConversationMessageReplyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 49ff34d9e3dc7..6ebb7d36003be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -629,7 +629,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction) +- [Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index de805d916a149..96b1d324e1969 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -402,7 +402,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount) +- [Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 6fabf30fec307..173177a061237 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -442,7 +442,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto) +- [Get-MgCommunicationOnlineMeetingConversationMessageReplyTo](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index 3cb7253b46574..e07d7c154bf85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -361,7 +361,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting) +- [Get-MgCommunicationOnlineMeetingConversationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index c916f685801b6..71c3c210e6d08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -361,7 +361,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) +- [Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index c4a6fc5268f2a..62551e7b15285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -361,7 +361,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter) +- [Get-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index 91d9d07910145..b1aa4be4642d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -363,7 +363,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation) +- [Get-MgCommunicationOnlineMeetingConversationStarterConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index 267d495706f52..2eefaff2c3cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -573,7 +573,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction) +- [Get-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index b29a5d8294165..26784810c3215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md @@ -359,7 +359,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount) +- [Get-MgCommunicationOnlineMeetingConversationStarterReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index 2b5ff64888e79..0b5adf42c2619 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply) +- [Get-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index 73c1fc314c6cf..eb8930d782378 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -385,7 +385,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation) +- [Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index 0baff67cb5d47..b08d80ddf1e78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md @@ -359,7 +359,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount) +- [Get-MgCommunicationOnlineMeetingConversationStarterReplyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 4430b10ab1dc6..0bce7360f268a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction) +- [Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index 2295c4beb4bdf..1251d8e842590 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount) +- [Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index 8eb36ff66433f..ea21394acf6c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto) +- [Get-MgCommunicationOnlineMeetingConversationStarterReplyTo](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index a75c7f901ae53..0319aec01cce1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount) +- [Get-MgCommunicationOnlineMeetingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index 92b911118d6e1..2cc82280f4a0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -422,8 +422,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage) -- [](https://learn.microsoft.com/graph/api/cloudcommunications-getallonlinemeetingmessages?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeetingMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudcommunications-getallonlinemeetingmessages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index 7502967e8069e..6706409bdd564 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -698,8 +698,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index d49063acf4fe9..4bdae77f7dec8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent) +- [Get-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index 54fdadb4e6b66..6b8c01945ccc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount) +- [Get-MgCommunicationOnlineMeetingRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index b987336e01f70..6c5250e780a26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta) +- [Get-MgCommunicationOnlineMeetingRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index 7ce6edbf1433e..af5a31e9bf90f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -698,8 +698,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index 4f1e5e9e65fa8..ff260031976c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent) +- [Get-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index af79428f0c9d2..53390922fd237 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -358,7 +358,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount) +- [Get-MgCommunicationOnlineMeetingTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index 62295b84a34f9..775c8503a316b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta) +- [Get-MgCommunicationOnlineMeetingTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 91124c32ce132..7fbff43566bba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -382,7 +382,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent) +- [Get-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index b293f1ebe4bd1..9a9c70c032cdd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -320,8 +320,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl) -- [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) +- [Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index 16d191b213d45..a38c225ce4afd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md @@ -555,8 +555,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence) -- [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) +- [Get-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 6a2fc5ed2a5a0..835bfcb2978ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -392,8 +392,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport) +- [Get-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f4dbb965f1311..9fcc452e0e6a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -643,7 +643,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord) +- [Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 2a6df00e14b78..a5c0f9d9a739c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -409,7 +409,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount) +- [Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index bdee48767c617..6f4d08ac7b9d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount) +- [Get-MgUserOnlineMeetingAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index 2704a43a64014..5a32883aa84a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -402,7 +402,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport) +- [Get-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index 6597728032280..ee50117ca7910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount) +- [Get-MgUserOnlineMeetingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index 75632d1b093a2..32c20310283c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -829,9 +829,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording) -- [](https://learn.microsoft.com/graph/api/callrecording-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) +- [Get-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording) +- [Graph API Reference](https://learn.microsoft.com/graph/api/callrecording-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getallrecordings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 848b9c5495169..31468ea56ffba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -410,7 +410,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent) +- [Get-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index 0c8b712c4b60a..703ce9e69cda5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -386,7 +386,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount) +- [Get-MgUserOnlineMeetingRecordingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index fde29f0c0d248..376cedb42dc97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta) +- [Get-MgUserOnlineMeetingRecordingDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 07f8d5f328356..8eaa49f06c833 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -829,10 +829,10 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript) -- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0) +- [Get-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 1eba9854ea101..15e8fa5f95c35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent) -- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) +- [Get-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index 8388c963f6367..ca4f52b6dadb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -387,7 +387,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount) +- [Get-MgUserOnlineMeetingTranscriptCount](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index 417571cbe2f61..29de70f2bafbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta) +- [Get-MgUserOnlineMeetingTranscriptDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index 08db449eb88d7..c503e52e77685 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -427,8 +427,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent) -- [](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) +- [Get-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index 5321bf07ef0f1..357470a83b8a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -362,8 +362,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl) -- [](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) +- [Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index e67fe4c661024..60b8f12ecff6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -392,8 +392,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence) -- [](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) +- [Get-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index 6153aeb4e4b7d..94d8569aa8cfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -716,8 +716,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0) +- [Invoke-MgAnswerCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index 01eed3119637a..5fa5ac84e8760 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -522,8 +522,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting) -- [](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) +- [Invoke-MgCreateOrGetCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 90929117a51b0..41e7f63b41ba2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -718,8 +718,8 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant) -- [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) +- [Invoke-MgInviteCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index 635af2764ceaf..1295b9c977bd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -413,8 +413,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive) -- [](https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0) +- [Invoke-MgKeepCommunicationCallAlive](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 85801d6801c4a..a56e54492a9ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -580,8 +580,8 @@ The CVI partner needs to copy over Call.MyParticipantId to this property. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality) -- [](https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0) +- [Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index dbb82893695c0..a6ca1aabcc8ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -511,8 +511,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0) +- [Invoke-MgMuteCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 72f9754e462f5..f3f8d1704adf2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant) -- [](https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0) +- [Invoke-MgMuteCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index d2374600fda38..015317ec17ee9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -548,8 +548,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt) -- [](https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0) +- [Invoke-MgPlayCommunicationCallPrompt](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index a4b1d8b57626e..ea9a7c8a806bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -727,8 +727,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse) -- [](https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0) +- [Invoke-MgRecordCommunicationCallResponse](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index 3c60f07f0a748..105e4c86c2fd0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -638,8 +638,8 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0) +- [Invoke-MgRedirectCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 5416fde44ebfa..422054c8a1e0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -576,8 +576,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0) +- [Invoke-MgRejectCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 23b63c3fc740d..474976835108c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -499,8 +499,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone) -- [](https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0) +- [Invoke-MgSubscribeCommunicationCallToTone](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 63f9423a53326..cc7aeb6953020 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -511,8 +511,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0) +- [Invoke-MgUnmuteCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index 7e3b76cf6d658..7e85dd4de1420 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -757,8 +757,8 @@ For peer-to-peer case, the call will be dropped once the participant is added su ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0) +- [Move-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index e7ae449778672..60c72515cd7f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -537,7 +537,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall) +- [New-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index e8dcef7c7302f..e1f659b9bd839 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -757,7 +757,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording) +- [New-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 763b57a3ecffb..5a8c8111b9bf6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -788,7 +788,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript) +- [New-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index 1d09729a12918..fc9b1c7c3e1b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -1681,8 +1681,8 @@ TRANSCRIPTION ``: callTranscriptionInfo ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall) -- [](https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-1.0) +- [New-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 14a0a5d3340ad..df4afa9da2d57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -602,8 +602,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup) -- [](https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-1.0) +- [New-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index 0005dfcca158f..e19970770d668 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -476,7 +476,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession) +- [New-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index abc33271c6a05..6435fe8713528 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -582,7 +582,7 @@ RESULTINFO ``: resultInfo ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation) +- [New-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index 72cf6deef606c..95fe1b239b443 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -837,7 +837,7 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant) +- [New-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index 687a5150b63c8..5b35cc7addd71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -557,7 +557,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2) +- [New-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index 47df0c1216954..76347b5821aee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -1012,7 +1012,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession) +- [New-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index 89c393ce0d601..919e3dd39f1e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -1736,7 +1736,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting) +- [New-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index 7fcb7c083d6fe..096756cfd30cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -712,7 +712,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport) +- [New-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index adaffc9263443..11c7081f2cf2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -754,7 +754,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord) +- [New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index 3081caa5393dd..98988a2a5d52d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -1083,7 +1083,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation) +- [New-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index aa4481f174335..b7ffb041ec442 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -897,7 +897,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage) +- [New-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 7d5b3f1c16ac5..80456e75070be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -599,7 +599,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction) +- [New-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index 409fc21d1044d..4ba65323263c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -926,7 +926,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply) +- [New-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 1e56911bbe001..f6eab852595bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -628,7 +628,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction) +- [New-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index c1bd0c6fa5050..4e7de393a42fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -572,7 +572,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction) +- [New-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index 9b327228aa1ec..9f08741b62049 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -899,7 +899,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply) +- [New-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index b969fb5ccc3f4..6aaa21719dbb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -599,7 +599,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction) +- [New-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index f6258ccb8c94f..ad2c6f509d242 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -758,7 +758,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording) +- [New-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index c7648abef2594..093cfd6e16993 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -788,7 +788,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript) +- [New-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index 9ff1ec75c8a61..b3b3307dd7215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -527,7 +527,7 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence) +- [New-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index 20851c17f4ca2..8b11f1bc3f079 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -2208,7 +2208,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting) +- [New-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index 04149f7e3af19..9dd0079c96b96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -739,7 +739,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport) +- [New-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 5cfc731fa7296..bb2fb6e85707e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -781,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord) +- [New-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index 597a26107e152..8e40d5fd8d65f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -785,7 +785,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording) +- [New-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index 02262a0ca67bc..2967b5a02741f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -815,7 +815,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript) +- [New-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index c65c58f26e762..998cafd04da5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall) +- [Remove-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index daa069e9d3774..8e95cb8254226 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording) +- [Remove-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index 0866d034d90b1..22be46adbb14b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -424,7 +424,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent) +- [Remove-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index f55ff819fcafd..b160e48e979c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript) +- [Remove-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index b71d48148e58a..a73141253d312 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -424,7 +424,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent) +- [Remove-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index aca5cea5fb2e0..b14023cf97b65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -425,7 +425,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent) +- [Remove-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index c36096ce17a3a..645418bec0615 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -424,8 +424,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall) -- [](https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-1.0) +- [Remove-MgCommunicationCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index e5aea2ed2733a..c1c9c82358fa8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -443,8 +443,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup) -- [](https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-1.0) +- [Remove-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index 765eb52a08aa8..743b3684fc3c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession) +- [Remove-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index c4a654ded24cb..b85199c93f326 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation) +- [Remove-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index b9b73a020a949..d6fb1955ccaa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -462,8 +462,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant) -- [](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) +- [Remove-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index b04e0eaa1e9b7..e138e3fa515ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2) +- [Remove-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index 8c9b2032c6f33..53500a6cfc65e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2) +- [Remove-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index 8809d3f04c232..9de12d175b112 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession) +- [Remove-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index 073934262d769..fa6beb95518cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting) +- [Remove-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index 2c7dec81ea310..e792e493732a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport) +- [Remove-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index fbb63a8892b47..273ead72afaa1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -445,7 +445,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord) +- [Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index 0e00155893ca2..9a7f24c812e0a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -403,7 +403,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport) +- [Remove-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index 501bd5275dbf8..7179f7568c82b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation) +- [Remove-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index 44c937b388d5c..0e01b663d0214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage) +- [Remove-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index 89577c0fb6551..dbd5bc0bf9536 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction) +- [Remove-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index d6c1b42f418f5..aea8ea897a587 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply) +- [Remove-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 9751333578213..fb981c31e5a42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -467,7 +467,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction) +- [Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index d1cef97c62b99..f3209a1d575e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -405,7 +405,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) +- [Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index 5446cb08222bd..02ee52da6fd82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -402,7 +402,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter) +- [Remove-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index bb68f48530dc8..2562ea5f100a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -424,7 +424,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction) +- [Remove-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index ebb39d4ba253c..c402aad0ff4da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -424,7 +424,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply) +- [Remove-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 2b484c8333db0..40956a13fa15d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction) +- [Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index ba0bee2b53097..f72f727fcc9b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording) +- [Remove-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index 635591a96633a..dbbee11e0dce6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -425,7 +425,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent) +- [Remove-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index 37ba2fc6631c7..e3e3d73b9fe12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript) +- [Remove-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index 1b628a6057b90..737a2fdd1facc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -425,7 +425,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent) +- [Remove-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index c30404e36a3db..e4c6eb032c513 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -426,7 +426,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent) +- [Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index 0c9c07033d02a..9771226503152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence) +- [Remove-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index cbbc6643a74f9..1fd57e08859ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting) +- [Remove-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index fe0649d90290d..7727d0beed0d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport) +- [Remove-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index ce528e7df2a08..ffcca87aee511 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -466,7 +466,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord) +- [Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index abf27df0ac76f..e99d31730ca59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -424,7 +424,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport) +- [Remove-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index f5d09e3203069..88f384768ba7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording) +- [Remove-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index f148eb425568b..3baf19cd54040 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent) +- [Remove-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index 8eed6b0c1f4de..c99915de8c6e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript) +- [Remove-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index 1ff6d8c52a489..13e435d349ca0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent) +- [Remove-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index e0927fbc81405..f7f1bdf2970e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent) +- [Remove-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index 73518a5446be4..c8b70879e67b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence) +- [Remove-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 37b12e990d4b2..badf493dd4152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -520,8 +520,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole) -- [](https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0) +- [Rename-MgCommunicationCallScreenSharingRole](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index 88521860dc88b..ba0550ca84caf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -539,7 +539,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone) +- [Send-MgCommunicationCallDtmfTone](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 71dc054aa248b..74aafc439afa6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -550,8 +550,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm) -- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) +- [Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 0f8ed7f235804..db9d6dcb81759 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -551,8 +551,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm) -- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) +- [Send-MgCommunicationOnlineMeetingVirtualAppointmentSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 0335c0d61b9e7..999339ebccefa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -612,8 +612,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm) -- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) +- [Send-MgUserOnlineMeetingVirtualAppointmentReminderSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index 97c38c85c1ecc..0f2c3e3478730 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -614,8 +614,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm) -- [](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) +- [Send-MgUserOnlineMeetingVirtualAppointmentSm](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index 815113e694a87..41fabccb86e42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent) +- [Set-MgCommunicationAdhocCallRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index ef1d44fd0be9b..e9de72fbb9523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent) +- [Set-MgCommunicationAdhocCallTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index 0db16309efe84..f427e7714448d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -478,7 +478,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent) +- [Set-MgCommunicationAdhocCallTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index 77153caba14ec..ddf17c867e922 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport) +- [Set-MgCommunicationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 56a91d1f19465..83cf8499e062c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) +- [Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index 54cca9d9ec116..c42c63fbc02c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent) +- [Set-MgCommunicationOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index b17c537b14d64..87558f1d7451f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -457,7 +457,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent) +- [Set-MgCommunicationOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index b269891f0cb22..517fb6e6a6bc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -478,7 +478,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent) +- [Set-MgCommunicationOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index ca370e89852bb..809f413457b96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -591,8 +591,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence) -- [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) +- [Set-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index cc0785b0ee40d..8a70fa0779961 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -536,8 +536,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation) -- [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) +- [Set-MgCommunicationPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 95a4fd236752f..44ff8977af412 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -534,8 +534,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation) -- [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) +- [Set-MgCommunicationPresenceManualLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index 9a9fb4f95d6b3..5d37e176a2d0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -531,8 +531,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage) -- [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) +- [Set-MgCommunicationPresenceStatusMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index 0e17f432ee59d..65fb64e912d7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -570,8 +570,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence) -- [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) +- [Set-MgCommunicationPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index 77aa8dda3479c..91c342f09cda1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -478,7 +478,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport) +- [Set-MgUserOnlineMeetingAttendeeReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index 3269d2ae78214..a8ce1cb83e78b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -478,7 +478,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent) +- [Set-MgUserOnlineMeetingRecordingContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index cf6a57b5e5d5c..2685eb31d3a32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -478,7 +478,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent) +- [Set-MgUserOnlineMeetingTranscriptContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 26ecd3846285d..b57e713b04ca9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -499,7 +499,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent) +- [Set-MgUserOnlineMeetingTranscriptMetadataContent](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index a220ca790ce45..8c620db4459e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -618,8 +618,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence) -- [](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) +- [Set-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index a96f142a960b8..e9e47583a3906 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -555,8 +555,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation) -- [](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) +- [Set-MgUserPresenceAutomaticLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setautomaticlocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index d86726aa098eb..6290cc59c259d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -553,8 +553,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation) -- [](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) +- [Set-MgUserPresenceManualLocation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setmanuallocation?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 964e397c0a2b6..6acc754ac6840 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -585,8 +585,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage) -- [](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) +- [Set-MgUserPresenceStatusMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index 8f61a461302e6..b519cda6cbd2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -597,8 +597,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence) -- [](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) +- [Set-MgUserPresenceUserPreferredPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence) +- [Graph API Reference](https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index a1872a96bb503..ef1e08f62cf63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -571,8 +571,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic) -- [](https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0) +- [Start-MgCommunicationCallParticipantHoldMusic](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index 76a7946bbd121..0d293600c76ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -515,8 +515,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing) -- [](https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0) +- [Stop-MgCommunicationCallMediaProcessing](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index df89babbe5c95..5067a802e7955 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -535,8 +535,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic) -- [](https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0) +- [Stop-MgCommunicationCallParticipantHoldMusic](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic) +- [Graph API Reference](https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 5c35cfd3fb4e4..bdff502ad01f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -668,7 +668,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall) +- [Update-MgCommunicationAdhocCall](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index 7300ace1147fd..c1a3a455a4e19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -785,7 +785,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording) +- [Update-MgCommunicationAdhocCallRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index 85918eb01023a..0d944df26413c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -815,7 +815,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript) +- [Update-MgCommunicationAdhocCallTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 2cca9a5ca5206..1fdc938e85f92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -631,8 +631,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup) -- [](https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-1.0) +- [Update-MgCommunicationCallAudioRoutingGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup) +- [Graph API Reference](https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 1a4bda1e7f3fd..60c712e731ab9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -504,7 +504,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession) +- [Update-MgCommunicationCallContentSharingSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index 8ae93a9882b08..8d05217fde526 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -611,7 +611,7 @@ RESULTINFO ``: resultInfo ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation) +- [Update-MgCommunicationCallOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index 89cd14dc952e5..211a08a935ce0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -866,7 +866,7 @@ RESTRICTEDEXPERIENCE ``: onlineMeetingRe ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant) +- [Update-MgCommunicationCallParticipant](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index 5f299350776cd..34f8b5afb295f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -557,7 +557,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2) +- [Update-MgCommunicationCallRecordOrganizerV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index a76a493a5be8f..677e466059923 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -584,7 +584,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2) +- [Update-MgCommunicationCallRecordParticipantV2](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index 96463c5302d1d..d88b7427115e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -1039,7 +1039,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession) +- [Update-MgCommunicationCallRecordSession](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index ae6f8f7d47cd4..073cf615f4dfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -539,8 +539,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus) -- [](https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0) +- [Update-MgCommunicationCallRecordingStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus) +- [Graph API Reference](https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index 9706b958fd0fd..ef62ec6857594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -2139,7 +2139,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting) +- [Update-MgCommunicationOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 2f458ba706a85..e7e05bf7d0b8c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -739,7 +739,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport) +- [Update-MgCommunicationOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index aee6f1363793b..368fe7f83c23b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -783,7 +783,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord) +- [Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index 0c8923dc6d73b..526dfbef52cd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -1256,7 +1256,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation) +- [Update-MgCommunicationOnlineMeetingConversation](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index 5e6fe6f2fe30c..9e928d2520881 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -926,7 +926,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage) +- [Update-MgCommunicationOnlineMeetingConversationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index d536f23e0be26..02911c3f33d39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -628,7 +628,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction) +- [Update-MgCommunicationOnlineMeetingConversationMessageReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index de9b81d0fcfe3..99a72c0b70d35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -957,7 +957,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply) +- [Update-MgCommunicationOnlineMeetingConversationMessageReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 8a82c062a6da3..4c3b7a5d9b1f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -655,7 +655,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction) +- [Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index b924879bdd134..435f2c1f84aab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -899,7 +899,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter) +- [Update-MgCommunicationOnlineMeetingConversationStarter](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index d0f93e02cb33e..050dcddcfb4af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -599,7 +599,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction) +- [Update-MgCommunicationOnlineMeetingConversationStarterReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index b668074a6e680..f98bd22f7cb61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -928,7 +928,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply) +- [Update-MgCommunicationOnlineMeetingConversationStarterReply](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 611e22454f76e..8c212792a0d53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -628,7 +628,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction) +- [Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index d06f67a49b605..e95a70f4a63b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -785,7 +785,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording) +- [Update-MgCommunicationOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index 7d7d8655275c5..475aea1d24df2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -815,7 +815,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript) +- [Update-MgCommunicationOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index f41dee44241ce..3aacc0ffaafa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -677,7 +677,7 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence) +- [Update-MgCommunicationPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index e2df2403c607f..b0e230e47b533 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -2213,7 +2213,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting) +- [Update-MgUserOnlineMeeting](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index 07aea34644012..3f99e2a9bfbf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -766,7 +766,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport) +- [Update-MgUserOnlineMeetingAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 9ae756c252dba..6e0e7dd7434ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -810,7 +810,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord) +- [Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index f4acb4b302f78..139eaae20f656 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -812,7 +812,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording) +- [Update-MgUserOnlineMeetingRecording](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index 9e29df3d423c7..458c2975d12f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -842,7 +842,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript) +- [Update-MgUserOnlineMeetingTranscript](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 5f15b705791a8..2486480be6454 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -677,7 +677,7 @@ WORKLOCATION ``: userWorkLocation ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence) +- [Update-MgUserPresence](https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence)