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 48f78c1ccc46beaf843e8aa0f5ed42967bd74b80 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:35:35 +0000 Subject: [PATCH 10/17] Updated markdown help --- .../Get-MgBookingBusiness.md | 56 ++-------- .../Get-MgBookingBusinessAppointment.md | 56 ++-------- .../Get-MgBookingBusinessAppointmentCount.md | 50 +++------ .../Get-MgBookingBusinessCalendarView.md | 47 ++------ .../Get-MgBookingBusinessCalendarViewCount.md | 50 +++------ .../Get-MgBookingBusinessCount.md | 46 ++------ .../Get-MgBookingBusinessCustomQuestion.md | 56 ++-------- ...et-MgBookingBusinessCustomQuestionCount.md | 50 +++------ .../Get-MgBookingBusinessCustomer.md | 56 ++-------- .../Get-MgBookingBusinessCustomerCount.md | 50 +++------ .../Get-MgBookingBusinessService.md | 56 ++-------- .../Get-MgBookingBusinessServiceCount.md | 50 +++------ .../Get-MgBookingBusinessStaffAvailability.md | 62 ++--------- .../Get-MgBookingBusinessStaffMember.md | 56 ++-------- .../Get-MgBookingBusinessStaffMemberCount.md | 50 +++------ .../Get-MgBookingCurrency.md | 56 ++-------- .../Get-MgBookingCurrencyCount.md | 46 ++------ .../Get-MgVirtualEvent.md | 48 +++------ .../Get-MgVirtualEventCount.md | 42 +++----- .../Get-MgVirtualEventPresenter.md | 48 +++------ .../Get-MgVirtualEventPresenterCount.md | 46 +++----- .../Get-MgVirtualEventSession.md | 48 +++------ ...t-MgVirtualEventSessionAttendanceReport.md | 47 +++----- ...SessionAttendanceReportAttendanceRecord.md | 48 +++------ ...onAttendanceReportAttendanceRecordCount.md | 46 +++----- ...irtualEventSessionAttendanceReportCount.md | 46 +++----- .../Get-MgVirtualEventSessionCount.md | 46 +++----- .../Get-MgVirtualEventTownhall.md | 54 ++-------- ...t-MgVirtualEventTownhallByUserIdAndRole.md | 52 +++------ .../Get-MgVirtualEventTownhallByUserRole.md | 50 +++------ .../Get-MgVirtualEventTownhallCount.md | 42 +++----- .../Get-MgVirtualEventTownhallPresenter.md | 60 ++--------- ...et-MgVirtualEventTownhallPresenterCount.md | 46 +++----- .../Get-MgVirtualEventTownhallSession.md | 52 +++------ ...ualEventTownhallSessionAttendanceReport.md | 48 ++------- ...SessionAttendanceReportAttendanceRecord.md | 46 ++------ ...onAttendanceReportAttendanceRecordCount.md | 46 +++----- ...entTownhallSessionAttendanceReportCount.md | 46 +++----- .../Get-MgVirtualEventTownhallSessionCount.md | 50 +++------ .../Get-MgVirtualEventWebinar.md | 56 ++-------- ...et-MgVirtualEventWebinarByUserIdAndRole.md | 52 +++------ .../Get-MgVirtualEventWebinarByUserRole.md | 54 ++-------- .../Get-MgVirtualEventWebinarCount.md | 42 +++----- .../Get-MgVirtualEventWebinarPresenter.md | 48 +++------ ...Get-MgVirtualEventWebinarPresenterCount.md | 46 +++----- .../Get-MgVirtualEventWebinarRegistration.md | 56 ++-------- ...gVirtualEventWebinarRegistrationByEmail.md | 48 +++------ ...VirtualEventWebinarRegistrationByUserId.md | 48 +++------ ...alEventWebinarRegistrationConfiguration.md | 44 ++------ ...ebinarRegistrationConfigurationQuestion.md | 45 ++------ ...rRegistrationConfigurationQuestionCount.md | 46 +++----- ...-MgVirtualEventWebinarRegistrationCount.md | 46 +++----- ...gVirtualEventWebinarRegistrationSession.md | 46 ++------ ...ualEventWebinarRegistrationSessionCount.md | 46 +++----- .../Get-MgVirtualEventWebinarSession.md | 60 ++--------- ...tualEventWebinarSessionAttendanceReport.md | 48 ++------- ...SessionAttendanceReportAttendanceRecord.md | 46 ++------ ...onAttendanceReportAttendanceRecordCount.md | 46 +++----- ...ventWebinarSessionAttendanceReportCount.md | 46 +++----- .../Get-MgVirtualEventWebinarSessionCount.md | 50 +++------ .../Microsoft.Graph.Bookings.md | 21 +--- .../New-MgBookingBusiness.md | 52 ++------- .../New-MgBookingBusinessAppointment.md | 62 ++++------- .../New-MgBookingBusinessCalendarView.md | 60 +++-------- .../New-MgBookingBusinessCustomQuestion.md | 56 ++-------- .../New-MgBookingBusinessCustomer.md | 52 +-------- .../New-MgBookingBusinessService.md | 60 +++-------- .../New-MgBookingBusinessStaffMember.md | 53 ++------- .../New-MgBookingCurrency.md | 44 +++----- .../New-MgVirtualEvent.md | 56 ++++------ .../New-MgVirtualEventPresenter.md | 54 ++++------ .../New-MgVirtualEventSession.md | 70 +++++------- ...w-MgVirtualEventSessionAttendanceReport.md | 52 ++++----- ...SessionAttendanceReportAttendanceRecord.md | 54 ++++------ .../New-MgVirtualEventTownhall.md | 57 ++++------ .../New-MgVirtualEventTownhallPresenter.md | 63 +++-------- .../New-MgVirtualEventTownhallSession.md | 70 +++++------- ...ualEventTownhallSessionAttendanceReport.md | 51 +++------ ...SessionAttendanceReportAttendanceRecord.md | 53 +++------ .../New-MgVirtualEventWebinar.md | 59 ++++------ .../New-MgVirtualEventWebinarPresenter.md | 63 +++-------- .../New-MgVirtualEventWebinarRegistration.md | 67 +++--------- ...ebinarRegistrationConfigurationQuestion.md | 53 ++------- .../New-MgVirtualEventWebinarSession.md | 70 +++++------- ...tualEventWebinarSessionAttendanceReport.md | 51 +++------ ...SessionAttendanceReportAttendanceRecord.md | 54 ++++------ .../Publish-MgBookingBusiness.md | 50 +-------- .../Publish-MgVirtualEvent.md | 44 +++----- .../Remove-MgBookingBusiness.md | 46 +++----- .../Remove-MgBookingBusinessAppointment.md | 50 +-------- .../Remove-MgBookingBusinessCalendarView.md | 44 +++----- .../Remove-MgBookingBusinessCustomQuestion.md | 50 +-------- .../Remove-MgBookingBusinessCustomer.md | 50 +-------- .../Remove-MgBookingBusinessService.md | 50 +++------ .../Remove-MgBookingBusinessStaffMember.md | 50 +++------ .../Remove-MgBookingCurrency.md | 44 +++----- .../Remove-MgVirtualEvent.md | 44 +++----- .../Remove-MgVirtualEventPresenter.md | 44 +++----- .../Remove-MgVirtualEventSession.md | 44 +++----- ...e-MgVirtualEventSessionAttendanceReport.md | 44 +++----- ...SessionAttendanceReportAttendanceRecord.md | 44 +++----- .../Remove-MgVirtualEventTownhall.md | 44 +++----- .../Remove-MgVirtualEventTownhallPresenter.md | 46 ++------ .../Remove-MgVirtualEventTownhallSession.md | 44 +++----- ...ualEventTownhallSessionAttendanceReport.md | 44 +++----- ...SessionAttendanceReportAttendanceRecord.md | 44 +++----- .../Remove-MgVirtualEventWebinar.md | 44 +++----- .../Remove-MgVirtualEventWebinarPresenter.md | 44 +++----- ...emove-MgVirtualEventWebinarRegistration.md | 44 +++----- ...gVirtualEventWebinarRegistrationByEmail.md | 44 +++----- ...VirtualEventWebinarRegistrationByUserId.md | 44 +++----- ...alEventWebinarRegistrationConfiguration.md | 44 +++----- ...ebinarRegistrationConfigurationQuestion.md | 42 +------- .../Remove-MgVirtualEventWebinarSession.md | 44 +++----- ...tualEventWebinarSessionAttendanceReport.md | 44 +++----- ...SessionAttendanceReportAttendanceRecord.md | 44 +++----- ...-MgVirtualEventExternalEventInformation.md | 52 +++------ .../Stop-MgBookingBusinessAppointment.md | 61 ++--------- .../Stop-MgBookingBusinessCalendarView.md | 54 +++------- .../Stop-MgVirtualEvent.md | 44 +++----- .../Stop-MgVirtualEventWebinarRegistration.md | 48 ++------- ...-MgVirtualEventWebinarRegistrationEmail.md | 44 +++----- ...MgVirtualEventWebinarRegistrationUserId.md | 44 +++----- .../Unpublish-MgBookingBusiness.md | 50 +-------- .../Update-MgBookingBusiness.md | 63 +++-------- .../Update-MgBookingBusinessAppointment.md | 102 ++++++++++-------- .../Update-MgBookingBusinessCalendarView.md | 56 ++++------ .../Update-MgBookingBusinessCustomQuestion.md | 56 ++-------- .../Update-MgBookingBusinessCustomer.md | 54 ++-------- .../Update-MgBookingBusinessService.md | 64 ++++------- .../Update-MgBookingBusinessStaffMember.md | 54 +++------- .../Update-MgBookingCurrency.md | 51 +++------ .../Update-MgVirtualEvent.md | 60 ++++------- .../Update-MgVirtualEventPresenter.md | 54 ++++------ .../Update-MgVirtualEventSession.md | 70 +++++------- ...e-MgVirtualEventSessionAttendanceReport.md | 52 ++++----- ...SessionAttendanceReportAttendanceRecord.md | 54 ++++------ .../Update-MgVirtualEventTownhall.md | 60 +++-------- .../Update-MgVirtualEventTownhallPresenter.md | 53 +++------ .../Update-MgVirtualEventTownhallSession.md | 69 +++++------- ...ualEventTownhallSessionAttendanceReport.md | 52 ++++----- ...SessionAttendanceReportAttendanceRecord.md | 52 +++------ .../Update-MgVirtualEventWebinar.md | 62 +++-------- .../Update-MgVirtualEventWebinarPresenter.md | 55 ++-------- ...pdate-MgVirtualEventWebinarRegistration.md | 53 ++++----- ...gVirtualEventWebinarRegistrationByEmail.md | 54 ++++------ ...VirtualEventWebinarRegistrationByUserId.md | 54 ++++------ ...alEventWebinarRegistrationConfiguration.md | 54 ++++------ ...ebinarRegistrationConfigurationQuestion.md | 48 +++------ .../Update-MgVirtualEventWebinarSession.md | 70 +++++------- ...tualEventWebinarSessionAttendanceReport.md | 52 ++++----- ...SessionAttendanceReportAttendanceRecord.md | 54 ++++------ 152 files changed, 2100 insertions(+), 5713 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index 0de1873c7eeba..1fe204eac90c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusiness --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusiness Get the properties and relationships of a bookingBusiness object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgBookingBusiness [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgBookingBusiness [-ExpandProperty ] [-Property ] [-Filt Get-MgBookingBusiness -BookingBusinessId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgBookingBusiness -BookingBusinessId [-ExpandProperty ] Get-MgBookingBusiness -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,27 +55,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingBusiness object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -``` -This example shows how to use the Get-MgBookingBusiness Cmdlet. - - ## PARAMETERS ### -All @@ -539,7 +523,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -563,28 +547,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index 9cd09193b56a5..5d59cb3e265a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessAppointment --- @@ -16,9 +16,6 @@ title: Get-MgBookingBusinessAppointment Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The start and end properties are always returned in UTC. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgBookingBusinessAppointment -BookingBusinessId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusiness [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusiness Get-MgBookingBusinessAppointment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +58,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The start and end properties are always returned in UTC. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -593,28 +577,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment) +- [](https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 9bbb250882a2a..125a84d496ef8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessAppointmentCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessAppointmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessAppointmentCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessAppointmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessAppointmentCount -BookingBusinessId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgBookingBusinessAppointmentCount -BookingBusinessId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessAppointmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md index 35327cc5cd0c1..d0b1b04b28933 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCalendarView --- @@ -17,9 +17,6 @@ The set of appointments of this business in a specified date range. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgBookingBusinessCalendarView -BookingBusinessId -End -Sta [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +37,7 @@ Get-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusines -End -Start [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +47,7 @@ Get-MgBookingBusinessCalendarView -InputObject -End [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,17 +62,12 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings -Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" - -``` -This example shows how to use the Get-MgBookingBusinessCalendarView Cmdlet. - +Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ## PARAMETERS @@ -609,7 +600,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -633,27 +624,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index e30accc72198b..96b3ccb8ca978 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCalendarViewCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCalendarViewCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCalendarViewCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCalendarViewCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgBookingBusinessCalendarViewCount -BookingBusinessId -End [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgBookingBusinessCalendarViewCount -InputObject -End [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -387,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -411,27 +410,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCalendarViewCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index 994dc02883e3a..a8cbe0c4aa4fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgBookingBusinessCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index 1dfb606e16033..fe7ecc8785624 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCustomQuestion --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCustomQuestion Read the properties and relationships of a bookingCustomQuestion object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgBookingBusinessCustomQuestion -BookingBusinessId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgBookingBusinessCustomQuestion -BookingBusinessId -BookingCustomQu [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgBookingBusinessCustomQuestion -BookingBusinessId -BookingCustomQu Get-MgBookingBusinessCustomQuestion -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a bookingCustomQuestion object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. - - ## PARAMETERS ### -All @@ -567,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -591,28 +575,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion) +- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index 7e5aefd50be3d..7287aaad3a59f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCustomQuestionCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCustomQuestionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomQuestionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomQuestionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessCustomQuestionCount -BookingBusinessId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgBookingBusinessCustomQuestionCount -BookingBusinessId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, Bookings.ReadWrite.All, Bookings.Manage.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCustomQuestionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index be544dd09fb13..942677b6b76f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCustomer --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCustomer Get the properties and relationships of a bookingCustomer object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgBookingBusinessCustomer -BookingBusinessId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgBookingBusinessCustomer -BookingBusinessId -BookingCustomerBaseId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgBookingBusinessCustomer -BookingBusinessId -BookingCustomerBaseId Get-MgBookingBusinessCustomer -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingCustomer object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. - - ## PARAMETERS ### -All @@ -571,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -595,28 +579,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer) +- [](https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index 4a36d961b5267..43e59506b4f15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessCustomerCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessCustomerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomerCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessCustomerCount -BookingBusinessId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgBookingBusinessCustomerCount -BookingBusinessId [-Filter Get-MgBookingBusinessCustomerCount -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) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessCustomerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index beac72be9712d..ddcb362f393cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessService --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessService Get the properties and relationships of a bookingService object in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessService?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgBookingBusinessService -BookingBusinessId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgBookingBusinessService -BookingBusinessId -BookingServiceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgBookingBusinessService -BookingBusinessId -BookingServiceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingService object in the specified bookingBusiness. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Get-MgBookingBusinessService Cmdlet. - - ## PARAMETERS ### -All @@ -567,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -591,28 +575,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice) +- [](https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index 3ba525212a4a9..21c18afd6384a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessServiceCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessServiceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessServiceCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessServiceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessServiceCount -BookingBusinessId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgBookingBusinessServiceCount -BookingBusinessId [-Filter ] Get-MgBookingBusinessServiceCount -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) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessServiceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index f1a816625103d..a2eb6af0f37dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessStaffAvailability --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessStaffAvailability Get the availability information of staff members of a Microsoft Bookings calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffAvailability](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffAvailability?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgBookingBusinessStaffAvailability -BookingBusinessId [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +36,6 @@ Get-MgBookingBusinessStaffAvailability -BookingBusinessId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +47,6 @@ Get-MgBookingBusinessStaffAvailability -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -63,7 +57,6 @@ Get-MgBookingBusinessStaffAvailability -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Get the availability information of staff members of a Microsoft Bookings calendar. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Not supported | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Read.All, Calendars.ReadWrite, Calendars.Read, Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -106,10 +90,6 @@ endDateTime = @{ Get-MgBookingBusinessStaffAvailability -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the Get-MgBookingBusinessStaffAvailability Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -141,7 +121,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -443,7 +423,7 @@ HelpMessage: '' ### -StaffIds - +. ```yaml Type: System.String[] @@ -552,7 +532,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [EndDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -562,13 +542,13 @@ See below for more possible values. [StaffIds ]: [StartDateTime ]: dateTimeTimeZone -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -589,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -598,27 +578,5 @@ See below for more possible values. ## RELATED LINKS -- [Get-MgBookingBusinessStaffAvailability](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index d6d6ad0d3e2eb..3ee2ed2ed63b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessStaffMember --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessStaffMember Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgBookingBusinessStaffMember -BookingBusinessId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgBookingBusinessStaffMember -BookingBusinessId -BookingStaffMember [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgBookingBusinessStaffMember -BookingBusinessId -BookingStaffMember Get-MgBookingBusinessStaffMember -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. - - ## PARAMETERS ### -All @@ -571,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -595,28 +579,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember) +- [](https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index 935aa610c2840..9f9ce4b79d0aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingBusinessStaffMemberCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingBusinessStaffMemberCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffMemberCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffMemberCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingBusinessStaffMemberCount -BookingBusinessId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgBookingBusinessStaffMemberCount -BookingBusinessId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingBusinessStaffMemberCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index aafd7fa3b69a3..e338497b6e8a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingCurrency --- @@ -16,9 +16,6 @@ title: Get-MgBookingCurrency Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingCurrency?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgBookingCurrency [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgBookingCurrency [-ExpandProperty ] [-Property ] [-Filt Get-MgBookingCurrency -BookingCurrencyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgBookingCurrency -BookingCurrencyId [-ExpandProperty ] Get-MgBookingCurrency -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency -``` -This example shows how to use the Get-MgBookingCurrency Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -565,28 +549,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency) +- [](https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index 685045d6be037..bf1a3a8a4286a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgBookingCurrencyCount --- @@ -15,9 +15,6 @@ title: Get-MgBookingCurrencyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaBookingCurrencyCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingCurrencyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgBookingCurrencyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | Bookings.Read.All, BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgBookingCurrencyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md index 76d64bd987d28..a67f241406690 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEvent Get events from solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEvent [-ExpandProperty ] [-Property ] [-Filter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get1 @@ -37,7 +34,7 @@ Get-MgVirtualEvent [-ExpandProperty ] [-Property ] [-Filter Get-MgVirtualEvent -VirtualEventId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgVirtualEvent -VirtualEventId [-ExpandProperty ] [-Prope Get-MgVirtualEvent -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,6 +55,16 @@ This cmdlet has the following aliases, Get events from solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -518,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -542,27 +549,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md index 6b51793f22f23..b8bedeea4c014 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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-MgVirtualEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md index 97a33f6fbef32..13b311cabfaab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventPresenter --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventPresenter The virtual event presenters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventPresenter?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventPresenter -VirtualEventId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventPresenter -VirtualEventId -VirtualEventPresenterId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventPresenter -VirtualEventId -VirtualEventPresenterId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, The virtual event presenters. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -546,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -570,27 +577,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md index 76bfa07d94760..a5b8359641b29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventPresenterCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventPresenterCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventPresenterCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventPresenterCount -VirtualEventId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventPresenterCount -VirtualEventId [-Filter ] [-S Get-MgVirtualEventPresenterCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md index e6d10a688cc7a..22998683c57ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSession --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventSession The sessions for the virtual event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventSession -VirtualEventId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventSession -VirtualEventId -VirtualEventSessionId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventSession -VirtualEventId -VirtualEventSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, The sessions for the virtual event. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -546,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -570,27 +577,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md index d4ba75d8ba2dd..0fa7a3ad50daf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSessionAttendanceReport --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventSessionAttendanceReport The attendance reports of an online meeting. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgVirtualEventSessionAttendanceReport -VirtualEventId -VirtualEvent [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgVirtualEventSessionAttendanceReport -MeetingAttendanceReportId -VirtualEventId -VirtualEventSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgVirtualEventSessionAttendanceReport -InputObject [-ExpandProperty ] [-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 @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -601,27 +607,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 929c53db95952..66eb1ae522a65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecord --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgVirtualEventSessionAttendanceReportAttendanceRecord -MeetingAttendanceRepo [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgVirtualEventSessionAttendanceReportAttendanceRecord -AttendanceRecordId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +48,7 @@ Get-MgVirtualEventSessionAttendanceReportAttendanceRecord -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,6 +61,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 @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -629,27 +636,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md index 8b6c5c200874e..83409c6e3f212 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount -MeetingAttendanc -VirtualEventId -VirtualEventSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount -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 @@ -377,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -401,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md index 53d1321ad9e49..ad2d5d82360e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSessionAttendanceReportCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventSessionAttendanceReportCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventSessionAttendanceReportCount -VirtualEventId -VirtualEventSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgVirtualEventSessionAttendanceReportCount -VirtualEventId Get-MgVirtualEventSessionAttendanceReportCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-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 @@ -355,7 +362,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -379,27 +386,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md index 63b959d7e8c1e..9f8a2b0db1845 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventSessionCount -VirtualEventId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventSessionCount -VirtualEventId [-Filter ] [-Sea Get-MgVirtualEventSessionCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index 12d908a04ecf0..eebc970315c3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhall --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventTownhall Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhall?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgVirtualEventTownhall [-ExpandProperty ] [-Property ] [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventTownhall [-ExpandProperty ] [-Property ] [ Get-MgVirtualEventTownhall -VirtualEventTownhallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventTownhall -VirtualEventTownhallId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhall -VirtualEventTownhallId $virtualEventTownhallId -``` -This example shows how to use the Get-MgVirtualEventTownhall Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -565,27 +549,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall) +- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index ce912957f505b..f07656beb1fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallByUserIdAndRole --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallByUserIdAndRole Get a list of virtualEventTownhall objects where the specified user is either the organizer or a coorganizer. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallByUserIdAndRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallByUserIdAndRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventTownhallByUserIdAndRole -Role -UserId [-Coun [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgVirtualEventTownhallByUserIdAndRole -InputObject [-Cou [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, Get a list of virtualEventTownhall objects where the specified user is either the organizer or a coorganizer. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -496,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -520,28 +519,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallByUserIdAndRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole) +- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index 6bf697518c481..0193a4eeed936 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallByUserRole --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallByUserRole Get a list of virtualEventTownhall objects where the signed-in user is either the organizer or a coorganizer. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallByUserRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallByUserRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventTownhallByUserRole -Role [-Count] [-ExpandProperty ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgVirtualEventTownhallByUserRole -InputObject [-Count] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,13 +47,13 @@ This cmdlet has the following aliases, Get a list of virtualEventTownhall objects where the signed-in user is either the organizer or a coorganizer. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | +Import-Module Microsoft.Graph.Bookings + +Get-MgVirtualEventTownhallByUserRole -Role $roleId ## PARAMETERS @@ -474,7 +471,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -498,28 +495,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallByUserRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole) +- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md index 9d364936c05b6..f6f187e3097c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventTownhallCount [-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-MgVirtualEventTownhallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index 8678102db46b2..256659437e02a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallPresenter --- @@ -14,10 +14,7 @@ title: Get-MgVirtualEventTownhallPresenter ## SYNOPSIS Read the properties and relationships of a virtualEventPresenter object. -Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) +Currently the supported virtual event types are: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## SYNTAX @@ -29,7 +26,7 @@ Get-MgVirtualEventTownhallPresenter -VirtualEventTownhallId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgVirtualEventTownhallPresenter -VirtualEventPresenterId -VirtualEventTownhallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgVirtualEventTownhallPresenter -VirtualEventPresenterId Get-MgVirtualEventTownhallPresenter -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,29 +56,16 @@ This cmdlet has the following aliases, ## DESCRIPTION Read the properties and relationships of a virtualEventPresenter object. -Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.All, | +Currently the supported virtual event types are: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -``` -This example shows how to use the Get-MgVirtualEventTownhallPresenter Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -593,28 +577,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter) +- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md index d52d54809d813..e0c8c497108e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallPresenterCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallPresenterCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallPresenterCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventTownhallPresenterCount -VirtualEventTownhallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventTownhallPresenterCount -VirtualEventTownhallId [-Filt Get-MgVirtualEventTownhallPresenterCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index bced7e9fa79c9..42b74ee41fef9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSession --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallSession The sessions for the virtual event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventTownhallSession -VirtualEventTownhallId [-ExpandPrope [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventTownhallSession -VirtualEventSessionId -VirtualEventT [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventTownhallSession -VirtualEventSessionId -VirtualEventT Get-MgVirtualEventTownhallSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,13 +56,15 @@ This cmdlet has the following aliases, The sessions for the virtual event. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -554,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,27 +577,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md index 2ca73a4d648a4..7df471c83fe3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSessionAttendanceReport --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReport Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReport -VirtualEventSessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReport -MeetingAttendanceReportId -VirtualEventTownhallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,18 +61,13 @@ Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. ## EXAMPLES -### Example 1: Get the attendance report for a town hall session by ID -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallSessionAttendanceReport -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId -``` -This example will get the attendance report for a town hall session by id - - ## PARAMETERS ### -All @@ -590,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -614,28 +606,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport) -- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport) +- [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index e82cb8e080545..cd4a5df0433fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -42,7 +39,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -AttendanceRec -VirtualEventTownhallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +49,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -InputObject < [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,18 +63,13 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES -### Example 1: List attendance records for the attendance report of a town hall session -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId -``` -This example will list attendance records for the attendance report of a town hall session - - ## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -643,27 +635,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord) -- [Graph API Reference](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord) +- [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md index 97eacb4aef2fc..9f87a5b219fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount -VirtualEventTownhallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -402,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md index 37c9c8ba18c72..54dd8e5146161 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSessionAttendanceReportCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportCount -VirtualEventSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventTownhallSessionAttendanceReportCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index ced7b5fd707b4..c40596f304256 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventTownhallSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventTownhallSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventTownhallSessionCount -VirtualEventTownhallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventTownhallSessionCount -VirtualEventTownhallId [-Filter Get-MgVirtualEventTownhallSessionCount -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) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventTownhallSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index bcb75d0868aa1..283fec97b346f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinar --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventWebinar Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinar?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgVirtualEventWebinar [-ExpandProperty ] [-Property ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventWebinar [-ExpandProperty ] [-Property ] [- Get-MgVirtualEventWebinar -VirtualEventWebinarId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventWebinar -VirtualEventWebinarId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinar -``` -This example shows how to use the Get-MgVirtualEventWebinar Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -565,28 +549,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index 85c83fae01dba..00c56f545a20d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarByUserIdAndRole --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarByUserIdAndRole Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarByUserIdAndRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarByUserIdAndRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventWebinarByUserIdAndRole -Role -UserId [-Count [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +36,7 @@ Get-MgVirtualEventWebinarByUserIdAndRole -InputObject [-Coun [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,13 +48,15 @@ This cmdlet has the following aliases, Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -496,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -520,28 +519,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarByUserIdAndRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 45cd7e0ee0e12..4127e55635a0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarByUserRole --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarByUserRole Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarByUserRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarByUserRole?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarByUserRole -Role [-Count] [-ExpandProperty ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgVirtualEventWebinarByUserRole -InputObject [-Count] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,26 +47,13 @@ This cmdlet has the following aliases, Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings -Get-MgVirtualEventWebinarByUserRole -Role $roleId - -``` -This example shows how to use the Get-MgVirtualEventWebinarByUserRole Cmdlet. - +Get-MgVirtualEventWebinarByUserRole -Role $roleId ## PARAMETERS @@ -487,7 +471,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -511,27 +495,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarByUserRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md index 48f3a3dc2f360..b57898e958443 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventWebinarCount [-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-MgVirtualEventWebinarCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md index 5076b95b14d9e..060d1e2a476f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarPresenter --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarPresenter The virtual event presenters. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventWebinarPresenter -VirtualEventWebinarId [-ExpandPrope [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventWebinarPresenter -VirtualEventPresenterId -VirtualEve [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventWebinarPresenter -VirtualEventPresenterId -VirtualEve Get-MgVirtualEventWebinarPresenter -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, The virtual event presenters. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -546,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -570,27 +577,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md index c8f6375b8ba25..c6d601c37beb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarPresenterCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarPresenterCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarPresenterCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventWebinarPresenterCount -VirtualEventWebinarId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventWebinarPresenterCount -VirtualEventWebinarId [-Filter Get-MgVirtualEventWebinarPresenterCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index f83a0bcefca15..d0a8823304a1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistration --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistration Get the properties and relationships of a virtualEventRegistration object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventWebinarRegistration -VirtualEventWebinarId [-ExpandPr [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId -VirtualEventWebinarId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId Get-MgVirtualEventWebinarRegistration -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.Chat, VirtualEventRegistration-Anon.ReadWrite.All, VirtualEvent.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -``` -This example shows how to use the Get-MgVirtualEventWebinarRegistration Cmdlet. - - ## PARAMETERS ### -All @@ -567,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -591,28 +575,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration) +- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md index 570f74ce835a5..e774d79e3fc2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationByEmail --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationByEmail Get the properties and relationships of a virtualEventRegistration object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarRegistrationByEmail -Email -VirtualEventWebina [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarRegistrationByEmail -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -382,28 +389,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail) +- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md index 68e0bfd179c8a..685e813f62bf7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationByUserId --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationByUserId Get the properties and relationships of a virtualEventRegistration object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarRegistrationByUserId -UserId -VirtualEventWebi [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarRegistrationByUserId -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -382,28 +389,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid) +- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md index cbc7852ed9617..9980ef62b9371 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationConfiguration --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationConfiguration Read the properties and relationships of a virtualEventWebinarRegistrationConfiguration object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarRegistrationConfiguration -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,18 +47,13 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventWebinarRegistrationConfiguration object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId $virtualEventWebinarId -``` -This example shows how to use the Get-MgVirtualEventWebinarRegistrationConfiguration Cmdlet. - - ## PARAMETERS ### -Break @@ -350,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -374,27 +366,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 64f8abc01ab5c..421334ca3b32f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestion --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestion Registration questions. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarI [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgVirtualEventWebinarRegistrationConfigurationQuestion [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,18 +59,13 @@ This cmdlet has the following aliases, Registration questions. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -``` -This example shows how to use the Get-MgVirtualEventWebinarRegistrationConfigurationQuestion Cmdlet. - - ## PARAMETERS ### -All @@ -562,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -586,27 +577,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion) +- [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md index ecf93b91452b8..015e8698c37ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount -VirtualEventWeb [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -359,27 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md index 69706f91dc6a7..af42245f9d2cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventWebinarRegistrationCount -VirtualEventWebinarId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventWebinarRegistrationCount -VirtualEventWebinarId [-Fil Get-MgVirtualEventWebinarRegistrationCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -357,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md index 03c3becdcdfa3..6337e51d4e842 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationSession --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationSession Sessions for a registration. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgVirtualEventWebinarRegistrationSession -VirtualEventRegistrationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgVirtualEventWebinarRegistrationSession -VirtualEventRegistrationId -VirtualEventWebinarId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgVirtualEventWebinarRegistrationSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,18 +59,13 @@ This cmdlet has the following aliases, Sessions for a registration. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationSession -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventRegistrationId $virtualEventRegistrationId -``` -This example shows how to use the Get-MgVirtualEventWebinarRegistrationSession Cmdlet. - - ## PARAMETERS ### -All @@ -588,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -612,27 +604,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession) +- [](https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md index cad4cecec4606..49063ca13127b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarRegistrationSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarRegistrationSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarRegistrationSessionCount -VirtualEventRegistrationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarRegistrationSessionCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarRegistrationSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 01d836c95140e..129134533bf3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSession --- @@ -14,10 +14,7 @@ title: Get-MgVirtualEventWebinarSession ## SYNOPSIS Read the properties and relationships of a virtualEventSession object. -Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) +Currently, the following virtual event types are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## SYNTAX @@ -29,7 +26,7 @@ Get-MgVirtualEventWebinarSession -VirtualEventWebinarId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgVirtualEventWebinarSession -VirtualEventSessionId -VirtualEventWe [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgVirtualEventWebinarSession -VirtualEventSessionId -VirtualEventWe Get-MgVirtualEventWebinarSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,29 +56,16 @@ This cmdlet has the following aliases, ## DESCRIPTION Read the properties and relationships of a virtualEventSession object. -Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.All, | +Currently, the following virtual event types are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSession -VirtualEventWebinarId $virtualEventWebinarId -``` -This example shows how to use the Get-MgVirtualEventWebinarSession Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -593,28 +577,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession) +- [](https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md index 404190e9603ff..497f0b00352c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSessionAttendanceReport --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReport Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReport -VirtualEventSessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReport -MeetingAttendanceReportId -VirtualEventWebinarId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,18 +61,13 @@ Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. ## EXAMPLES -### Example 1: Get the attendance report for a webinar session by ID -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSessionAttendanceReport -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId -``` -This example will get the attendance report for a webinar session by id - - ## PARAMETERS ### -All @@ -590,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -614,28 +606,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport) -- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport) +- [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 3ebf51c50c44e..0271a1e0b7419 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord --- @@ -16,9 +16,6 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -MeetingAttenda [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -AttendanceReco [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +48,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,18 +62,13 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES -### Example 1: List attendance records of a webinar session's attendance report -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId -``` -This example will list attendance records of a webinar session's attendance report - - ## PARAMETERS ### -All @@ -618,7 +610,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -642,27 +634,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord) -- [Graph API Reference](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord) +- [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md index 683f1151f786f..d84a48010e55c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -402,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md index 9ada1da1fb60c..d8be702d5153a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSessionAttendanceReportCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportCount -VirtualEventSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgVirtualEventWebinarSessionAttendanceReportCount -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -380,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index 288f2600a7d9e..f8eaf2a670543 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgVirtualEventWebinarSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgVirtualEventWebinarSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgVirtualEventWebinarSessionCount -VirtualEventWebinarId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgVirtualEventWebinarSessionCount -VirtualEventWebinarId [-Filter < Get-MgVirtualEventWebinarSessionCount -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) | VirtualEvent.Read, VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEvent.Read.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,27 +364,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgVirtualEventWebinarSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md index f000b44a55448..d4afe05e78dc3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.Bookings -Module Guid: 4f4db9f5-1f07-499c-84f0-0e3854490233 +Module Guid: e9ffc879-ca52-485c-a9b3-d514bf0f341b Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.bookings/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -365,22 +365,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md index e8bdbd287f969..293080b6681a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusiness --- @@ -17,9 +17,6 @@ Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -39,7 +36,7 @@ New-MgBookingBusiness [-ResponseHeadersVariable ] [-AdditionalProperties [-StaffMembers ] [-WebSiteUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -49,7 +46,6 @@ New-MgBookingBusiness -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -64,16 +60,16 @@ This is the first step in setting up a Bookings business where you must specify You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings $params = @{ displayName = "Fourth Coffee" address = @{ - postOfficeBox = "P.O. Box 123" + postOfficeBox = "P.O. +Box 123" street = "4567 Main Street" city = "Buffalo" state = "NY" @@ -88,10 +84,6 @@ $params = @{ New-MgBookingBusiness -BodyParameter $params -``` -This example shows how to use the New-MgBookingBusiness Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -830,7 +822,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ADDRESS ``: physicalAddress +ADDRESS : physicalAddress [(Any) ]: This indicates any property can be added to this object. [City ]: The city. [CountryOrRegion ]: The country or region. @@ -925,7 +917,7 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -BODYPARAMETER ``: Represents a Microsoft Bookings Business. +BODYPARAMETER : Represents a Microsoft Bookings Business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1153,7 +1145,7 @@ Read-only. [WebSiteUrl ]: The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page. -BOOKINGPAGESETTINGS ``: bookingPageSettings +BOOKINGPAGESETTINGS : bookingPageSettings [(Any) ]: This indicates any property can be added to this object. [AccessControl ]: bookingPageAccessControl [BookingPageColorCode ]: Custom color for the booking page. @@ -1291,7 +1283,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1428,27 +1420,5 @@ Read-only. ## RELATED LINKS -- [New-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-bookingbusinesses?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-bookingbusinesses?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index 7f604d6d8fcca..c3782fe32ac17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessAppointment --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessAppointment Create a new bookingAppointment for the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -39,7 +36,6 @@ New-MgBookingBusinessAppointment -BookingBusinessId [-ResponseHeadersVa [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -49,7 +45,7 @@ New-MgBookingBusinessAppointment -BookingBusinessId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -71,7 +67,6 @@ New-MgBookingBusinessAppointment -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -81,7 +76,7 @@ New-MgBookingBusinessAppointment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -93,13 +88,15 @@ This cmdlet has the following aliases, Create a new bookingAppointment for the specified bookingBusiness. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -1321,7 +1318,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1406,13 +1403,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1440,7 +1437,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION ``: location +SERVICELOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1465,7 +1462,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1474,28 +1471,5 @@ See below for more possible values. ## RELATED LINKS -- [New-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index 7e4674cd6c651..4f9f4587d8d84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessCalendarView --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessCalendarView Create new navigation property to calendarView for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -39,7 +36,6 @@ New-MgBookingBusinessCalendarView -BookingBusinessId [-ResponseHeadersV [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -49,7 +45,7 @@ New-MgBookingBusinessCalendarView -BookingBusinessId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -71,7 +67,6 @@ New-MgBookingBusinessCalendarView -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -81,7 +76,7 @@ New-MgBookingBusinessCalendarView -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -93,13 +88,15 @@ This cmdlet has the following aliases, Create new navigation property to calendarView for solutions -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -1321,7 +1318,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1406,13 +1403,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1440,7 +1437,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION ``: location +SERVICELOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1465,7 +1462,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1474,27 +1471,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index 55db8a46b623c..7f7d8cc12c54c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessCustomQuestion --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessCustomQuestion Create a new bookingCustomQuestion object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgBookingBusinessCustomQuestion -BookingBusinessId [-ResponseHeader [-LastUpdatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgBookingBusinessCustomQuestion -BookingBusinessId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,6 @@ New-MgBookingBusinessCustomQuestion -InputObject [-LastUpdatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgBookingBusinessCustomQuestion -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Create a new bookingCustomQuestion object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -98,10 +84,6 @@ $params = @{ New-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the New-MgBookingBusinessCustomQuestion Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -628,7 +610,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a custom question of the business. +BODYPARAMETER : Represents a custom question of the business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -642,7 +624,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -666,27 +648,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-customquestions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customquestions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index 4adb7e632f236..c7479b164dbf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessCustomer --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessCustomer Create a new bookingCustomer object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,6 @@ New-MgBookingBusinessCustomer -BookingBusinessId [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +33,6 @@ New-MgBookingBusinessCustomer -BookingBusinessId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +42,6 @@ New-MgBookingBusinessCustomer -InputObject [-ResponseHeaders [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -57,7 +51,6 @@ New-MgBookingBusinessCustomer -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,18 +62,9 @@ This cmdlet has the following aliases, Create a new bookingCustomer object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -122,10 +106,6 @@ $params = @{ New-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the New-MgBookingBusinessCustomer Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -512,7 +492,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -536,27 +516,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-customers?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index 98e163fbef2a7..72fc5f2571dec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessService --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessService Create a new bookingService for the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessService?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -36,7 +33,6 @@ New-MgBookingBusinessService -BookingBusinessId [-ResponseHeadersVariab [-StaffMemberIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +42,7 @@ New-MgBookingBusinessService -BookingBusinessId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -65,7 +61,6 @@ New-MgBookingBusinessService -InputObject [-ResponseHeadersV [-StaffMemberIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -75,7 +70,7 @@ New-MgBookingBusinessService -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -87,13 +82,15 @@ This cmdlet has the following aliases, Create a new bookingService for the specified bookingBusiness. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -1119,7 +1116,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a particular service offered by a booking business. +BODYPARAMETER : Represents a particular service offered by a booking business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1220,7 +1217,7 @@ CUSTOMQUESTIONS : Contains the set o [IsRequired ]: Indicates whether it's mandatory to answer the custom question. [QuestionId ]: The ID of the custom question. -DEFAULTLOCATION ``: location +DEFAULTLOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1252,7 +1249,7 @@ The value of this property is available only when reading this bookingService by It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1273,7 +1270,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1306,28 +1303,5 @@ Use the email address specified in the email property of the bookingBusiness ent ## RELATED LINKS -- [New-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-services?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-services?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index bbc647dcb89a0..86534f3d27643 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingBusinessStaffMember --- @@ -15,9 +15,6 @@ title: New-MgBookingBusinessStaffMember Create a new bookingStaffMember in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,6 @@ New-MgBookingBusinessStaffMember -BookingBusinessId [-ResponseHeadersVa [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +33,6 @@ New-MgBookingBusinessStaffMember -BookingBusinessId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +42,7 @@ New-MgBookingBusinessStaffMember -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +52,6 @@ New-MgBookingBusinessStaffMember -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,18 +63,9 @@ This cmdlet has the following aliases, Create a new bookingStaffMember in the specified bookingBusiness. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -165,10 +150,6 @@ $params = @{ New-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the New-MgBookingBusinessStaffMember Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -555,7 +536,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -579,27 +560,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-staffmembers?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-staffmembers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md index bfda5c0711d75..a56a95807f820 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgBookingCurrency --- @@ -15,9 +15,6 @@ title: New-MgBookingCurrency Create new navigation property to bookingCurrencies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingCurrency?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,6 @@ New-MgBookingCurrency [-ResponseHeadersVariable ] [-AdditionalProperties [-Id ] [-Symbol ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +33,6 @@ New-MgBookingCurrency -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Create new navigation property to bookingCurrencies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -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. -BODYPARAMETER ``: bookingCurrency +BODYPARAMETER : bookingCurrency [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -391,27 +396,4 @@ For example, the currency symbol for the US dollar and for the Australian dollar ## RELATED LINKS -- [New-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md index e2fc3aa7576eb..2b84d46c1e29b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: New-MgVirtualEvent Create new navigation property to events for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,7 @@ New-MgVirtualEvent [-ResponseHeadersVariable ] [-AdditionalProperties ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,7 @@ New-MgVirtualEvent [-ResponseHeadersVariable ] [-AdditionalProperties [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -53,6 +50,16 @@ This cmdlet has the following aliases, Create new navigation property to events for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -582,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEvent +BODYPARAMETER : virtualEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -751,7 +758,7 @@ Read-only. [StartDateTime ]: dateTimeTimeZone [Status ]: virtualEventStatus -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -770,12 +777,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -941,11 +948,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -954,27 +961,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md index 4ebd883a61776..8be06d82fd1cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventPresenter --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventPresenter Create new navigation property to presenters for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventPresenter?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgVirtualEventPresenter -VirtualEventId [-ResponseHeadersVariable < [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgVirtualEventPresenter -VirtualEventId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,6 @@ New-MgVirtualEventPresenter -InputObject [-ResponseHeadersVa [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgVirtualEventPresenter -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +68,16 @@ This cmdlet has the following aliases, Create new navigation property to presenters for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -543,7 +548,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -567,14 +572,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -595,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -611,27 +616,4 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [New-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md index c36e88a8dcb29..cef22e8cbd280 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventSession --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventSession Create new navigation property to sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -43,7 +40,6 @@ New-MgVirtualEventSession -VirtualEventId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -53,7 +49,7 @@ New-MgVirtualEventSession -VirtualEventId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -79,7 +75,6 @@ New-MgVirtualEventSession -InputObject [-ResponseHeadersVari [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -89,7 +84,7 @@ New-MgVirtualEventSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -101,6 +96,16 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1523,7 +1528,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. @@ -1532,7 +1537,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1661,24 +1666,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1699,12 +1704,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1715,23 +1720,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1739,27 +1744,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [New-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md index 78ccd31bad104..bee306d8be043 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventSessionAttendanceReport Create new navigation property to attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgVirtualEventSessionAttendanceReport -VirtualEventId -VirtualEvent [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgVirtualEventSessionAttendanceReport -VirtualEventId -VirtualEvent -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +50,7 @@ New-MgVirtualEventSessionAttendanceReport -InputObject [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgVirtualEventSessionAttendanceReport -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 attendanceReports for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -739,27 +746,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 151b6629f5ddf..0ba0f4e0fd4f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgVirtualEventSessionAttendanceReportAttendanceRecord -MeetingAttendanceRepo [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgVirtualEventSessionAttendanceReportAttendanceRecord -MeetingAttendanceRepo -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +53,6 @@ New-MgVirtualEventSessionAttendanceReportAttendanceRecord -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +62,7 @@ New-MgVirtualEventSessionAttendanceReportAttendanceRecord -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +74,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -718,7 +723,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 +750,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 +758,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -784,27 +789,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md index 81cdb1ffbb074..38950a52fba62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventTownhall --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventTownhall Create a new virtualEventTownhall object in draft mode. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhall?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,7 @@ New-MgVirtualEventTownhall [-ResponseHeadersVariable ] [-AdditionalPrope [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +41,6 @@ New-MgVirtualEventTownhall -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -56,6 +52,16 @@ This cmdlet has the following aliases, Create a new virtualEventTownhall object in draft mode. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -673,7 +679,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventTownhall +BODYPARAMETER : virtualEventTownhall [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -860,7 +866,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -879,12 +885,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1057,11 +1063,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1070,28 +1076,5 @@ See below for more possible values. ## RELATED LINKS -- [New-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall) +- [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md index 4eea9431372be..e30142fd2d78d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventTownhallPresenter --- @@ -14,10 +14,7 @@ title: New-MgVirtualEventTownhallPresenter ## SYNOPSIS Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar - -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) +Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## SYNTAX @@ -30,7 +27,6 @@ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,6 @@ New-MgVirtualEventTownhallPresenter -InputObject [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +57,7 @@ New-MgVirtualEventTownhallPresenter -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,12 +68,11 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar +Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## EXAMPLES -### Example 1: Create an in-tenant presenter on a **virtualEventTownhall** -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -91,12 +85,7 @@ $params = @{ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params -``` -This example will create an in-tenant presenter on a **virtualeventtownhall** - -### Example 2: Create an out-of-tenant presenter on a **virtualEventTownhall** - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Bookings @@ -110,10 +99,6 @@ $params = @{ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params -``` -This example will create an out-of-tenant presenter on a **virtualeventtownhall** - - ## PARAMETERS ### -AdditionalProperties @@ -584,7 +569,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -608,14 +593,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -636,7 +621,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -652,27 +637,5 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [New-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter) +- [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md index f3e327aaac7d8..7577bddd2ab89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventTownhallSession --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventTownhallSession Create new navigation property to sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -44,7 +41,6 @@ New-MgVirtualEventTownhallSession -VirtualEventTownhallId [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -54,7 +50,7 @@ New-MgVirtualEventTownhallSession -VirtualEventTownhallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -81,7 +77,6 @@ New-MgVirtualEventTownhallSession -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -91,7 +86,7 @@ New-MgVirtualEventTownhallSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -103,6 +98,16 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1525,7 +1530,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. @@ -1534,7 +1539,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1663,24 +1668,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1701,12 +1706,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1717,23 +1722,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1741,27 +1746,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [New-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md index 565ffc20780ea..2ba36904523a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventTownhallSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventTownhallSessionAttendanceReport Create new navigation property to attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgVirtualEventTownhallSessionAttendanceReport -VirtualEventSessionId ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgVirtualEventTownhallSessionAttendanceReport -VirtualEventSessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgVirtualEventTownhallSessionAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -64,7 +60,7 @@ New-MgVirtualEventTownhallSessionAttendanceReport -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 attendanceReports for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -740,27 +746,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 2fcd90ee43584..73f3e16039f38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -45,7 +41,6 @@ New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -59,7 +54,6 @@ New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -InputObject < [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -69,7 +63,7 @@ New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -InputObject < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,6 +75,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -786,27 +790,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md index 18ea42ee65497..c59b70d9fb1f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinar --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventWebinar Create a new virtualEventWebinar object in draft mode. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinar?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,7 @@ New-MgVirtualEventWebinar [-ResponseHeadersVariable ] [-AdditionalProper [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +42,6 @@ New-MgVirtualEventWebinar -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +53,16 @@ This cmdlet has the following aliases, Create a new virtualEventWebinar object in draft mode. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -673,7 +679,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventWebinar +BODYPARAMETER : virtualEventWebinar [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -899,7 +905,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -918,12 +924,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -961,7 +967,7 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -REGISTRATIONCONFIGURATION ``: virtualEventWebinarRegistrationConfiguration +REGISTRATIONCONFIGURATION : virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -1260,11 +1266,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1273,28 +1279,5 @@ See below for more possible values. ## RELATED LINKS -- [New-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar) +- [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md index 9e6b22996f516..3d6891a70180e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarPresenter --- @@ -14,10 +14,7 @@ title: New-MgVirtualEventWebinarPresenter ## SYNOPSIS Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar - -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) +Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## SYNTAX @@ -30,7 +27,6 @@ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,6 @@ New-MgVirtualEventWebinarPresenter -InputObject [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +57,7 @@ New-MgVirtualEventWebinarPresenter -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,12 +68,11 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar +Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar ## EXAMPLES -### Example 1: Create an in-tenant presenter on a **virtualEventWebinar** -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -91,12 +85,7 @@ $params = @{ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example will create an in-tenant presenter on a **virtualeventwebinar** - -### Example 2: Create an out-of-tenant presenter on a **virtualEventWebinar** - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Bookings @@ -110,10 +99,6 @@ $params = @{ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example will create an out-of-tenant presenter on a **virtualeventwebinar** - - ## PARAMETERS ### -AdditionalProperties @@ -584,7 +569,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -608,14 +593,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -636,7 +621,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -652,27 +637,5 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [New-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter) +- [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index 6244760bbc3c0..aaa8ce32f45fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarRegistration --- @@ -16,9 +16,6 @@ title: New-MgVirtualEventWebinarRegistration Create a registration record for a registrant of a webinar. This method registers the person for the webinar. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,7 @@ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +41,7 @@ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -60,7 +57,7 @@ New-MgVirtualEventWebinarRegistration -InputObject [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -70,7 +67,7 @@ New-MgVirtualEventWebinarRegistration -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -83,18 +80,9 @@ This cmdlet has the following aliases, Create a registration record for a registrant of a webinar. This method registers the person for the webinar. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEventRegistration-Anon.ReadWrite.Chat, VirtualEventRegistration-Anon.ReadWrite.All, | - ## EXAMPLES -### Example 1: Creating registration record with delegated permission -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -136,12 +124,7 @@ $params = @{ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example shows creating registration record with delegated permission - -### Example 2: Creating registration record with application permission - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Bookings @@ -185,10 +168,6 @@ $params = @{ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example shows creating registration record with application permission - - ## PARAMETERS ### -AdditionalProperties @@ -909,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistration +BODYPARAMETER : virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1066,7 +1045,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -1074,7 +1053,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1236,27 +1215,5 @@ See below for more possible values. ## RELATED LINKS -- [New-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index b90ea131758ff..0d8f033e4d72c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarRegistrationConfigurationQuestion --- @@ -16,9 +16,6 @@ title: New-MgVirtualEventWebinarRegistrationConfigurationQuestion Create a registration question for a webinar. You can create either a predefined registration question or a custom registration question. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarI [-Id ] [-IsRequired] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarI [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +46,6 @@ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-IsRequired] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -62,7 +56,6 @@ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,9 +69,8 @@ Create a registration question for a webinar. You can create either a predefined registration question or a custom registration question. ## EXAMPLES -### Example 1: Add a custom registration question to a webinar registration -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -95,21 +87,12 @@ $params = @{ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example will add a custom registration question to a webinar registration - -### Example 2: Add a predefined registration question to a webinar registration - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.Bookings New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -``` -This example will add a predefined registration question to a webinar registration - - ## PARAMETERS ### -AdditionalProperties @@ -552,7 +535,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistrationQuestionBase +BODYPARAMETER : virtualEventRegistrationQuestionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -560,7 +543,7 @@ Read-only. [IsRequired ]: Indicates whether an answer to the question is required. The default value is false. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -584,27 +567,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion) +- [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md index a3b111b05d128..31ee712306db1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarSession --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventWebinarSession Create new navigation property to sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -43,7 +40,6 @@ New-MgVirtualEventWebinarSession -VirtualEventWebinarId [-ResponseHeade [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -53,7 +49,7 @@ New-MgVirtualEventWebinarSession -VirtualEventWebinarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -80,7 +76,6 @@ New-MgVirtualEventWebinarSession -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -90,7 +85,7 @@ New-MgVirtualEventWebinarSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -102,6 +97,16 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1524,7 +1529,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. @@ -1533,7 +1538,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1662,24 +1667,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1700,12 +1705,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1716,23 +1721,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1740,27 +1745,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [New-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md index 879385043c43a..07b2fb435f504 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventWebinarSessionAttendanceReport Create new navigation property to attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgVirtualEventWebinarSessionAttendanceReport -VirtualEventSessionId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgVirtualEventWebinarSessionAttendanceReport -VirtualEventSessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgVirtualEventWebinarSessionAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -64,7 +60,7 @@ New-MgVirtualEventWebinarSessionAttendanceReport -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 attendanceReports for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -740,27 +746,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 788a202913e9a..b4fffa8792ba3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -MeetingAttenda [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -MeetingAttenda -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +53,6 @@ New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +62,7 @@ New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +74,16 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -718,7 +723,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 +750,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 +758,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -784,27 +789,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index 6170077931700..6c352a96692b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Publish-MgBookingBusiness --- @@ -16,9 +16,6 @@ title: Publish-MgBookingBusiness Make the scheduling page of a business available to external customers. Set the isPublished property to true, and the publicUrl property to the URL of the scheduling page. -> [!NOTE] -> To view the beta release of this cmdlet, view [Publish-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Publish-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### Publish (Default) @@ -28,7 +25,6 @@ Publish-MgBookingBusiness -BookingBusinessId [-ResponseHeadersVariable [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PublishViaIdentity @@ -38,7 +34,6 @@ Publish-MgBookingBusiness -InputObject [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Make the scheduling page of a business available to external customers. Set the isPublished property to true, and the publicUrl property to the URL of the scheduling page. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Publish-MgBookingBusiness Cmdlet. - - ## PARAMETERS ### -BookingBusinessId @@ -381,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -405,27 +387,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Publish-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md index 1435415ea53df..47540972c9e64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Publish-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: Publish-MgVirtualEvent Invoke action publish -> [!NOTE] -> To view the beta release of this cmdlet, view [Publish-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Publish-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### Publish (Default) @@ -27,7 +24,6 @@ Publish-MgVirtualEvent -VirtualEventId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PublishViaIdentity @@ -37,7 +33,6 @@ Publish-MgVirtualEvent -InputObject [-ResponseHeadersVariabl [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Invoke action publish +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -382,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Publish-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md index 1f2d534c70f41..147a96a7b1338 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusiness --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusiness Delete a bookingBusiness object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusiness -BookingBusinessId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusiness -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete a bookingBusiness object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -BookingBusinessId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,28 +408,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index 2d5479cac88ea..96bfcdbbd5e40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessAppointment --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessAppointment Delete a bookingAppointment in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusin [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessAppointment -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete a bookingAppointment in the specified bookingBusiness. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -``` -This example shows how to use the Remove-MgBookingBusinessAppointment Cmdlet. - - ## PARAMETERS ### -BookingAppointmentId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -445,27 +427,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment) +- [](https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md index 6583304095ecb..6f6d93fe1fdfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessCalendarView --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessCalendarView Delete navigation property calendarView for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusi [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessCalendarView -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property calendarView for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -BookingAppointmentId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index f645e78632be5..ff4cd1a823202 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessCustomQuestion --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessCustomQuestion Delete a bookingCustomQuestion object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessCustomQuestion -BookingBusinessId -BookingCusto [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessCustomQuestion -InputObject [-IfMatc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete a bookingCustomQuestion object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -``` -This example shows how to use the Remove-MgBookingBusinessCustomQuestion Cmdlet. - - ## PARAMETERS ### -BookingBusinessId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -445,27 +427,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion) +- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index 54b56a4818c2b..cf8a7005a41d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessCustomer --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessCustomer Delete the specified bookingCustomer object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessCustomer -BookingBusinessId -BookingCustomerBas [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessCustomer -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete the specified bookingCustomer object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId -``` -This example shows how to use the Remove-MgBookingBusinessCustomer Cmdlet. - - ## PARAMETERS ### -BookingBusinessId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -445,27 +427,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer) +- [](https://learn.microsoft.com/graph/api/bookingcustomer-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index 424e5c58a4a1f..efdd4348a8810 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessService --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessService Delete a bookingService object in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessService?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessService -BookingBusinessId -BookingServiceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessService -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,13 +44,15 @@ This cmdlet has the following aliases, Delete a bookingService object in the specified bookingBusiness. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -408,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -432,28 +429,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice) +- [](https://learn.microsoft.com/graph/api/bookingservice-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index ea7a6add9b68c..94ac3c408a5eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingBusinessStaffMember --- @@ -15,9 +15,6 @@ title: Remove-MgBookingBusinessStaffMember Delete a bookingStaffMember in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingBusinessStaffMember -BookingBusinessId -BookingStaffMem [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingBusinessStaffMember -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,13 +44,15 @@ This cmdlet has the following aliases, Delete a bookingStaffMember in the specified bookingBusiness. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -408,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -432,28 +429,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember) +- [](https://learn.microsoft.com/graph/api/bookingstaffmember-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md index 30673a6d50b44..04f7396e8fa0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgBookingCurrency --- @@ -15,9 +15,6 @@ title: Remove-MgBookingCurrency Delete navigation property bookingCurrencies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingCurrency?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgBookingCurrency -BookingCurrencyId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgBookingCurrency -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property bookingCurrencies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -BookingCurrencyId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md index 6d37705a6bf6c..db2075c4b87d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEvent Delete navigation property events for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete1 (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEvent -VirtualEventId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEvent -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property events for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md index 9062fc3843a7f..37f86d386ec61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventPresenter --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventPresenter Delete navigation property presenters for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventPresenter?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventPresenter -VirtualEventId -VirtualEventPresenterId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventPresenter -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 presenters for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md index 6570f6552f86b..f01d7a10aeba6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventSession --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventSession Delete navigation property sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventSession -VirtualEventId -VirtualEventSessionId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventSession -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property sessions for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md index adb17de8b448e..e5ddebf0566fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventSessionAttendanceReport Delete navigation property attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventSessionAttendanceReport -MeetingAttendanceReportId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventSessionAttendanceReport -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 solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 3b26aa3810fb8..e741adc1839b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord -AttendanceRecordId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord -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 attendanceRecords for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttendanceRecordId @@ -443,7 +448,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -467,27 +472,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md index c328209c14d3c..0d4dcfc0448d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventTownhall --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventTownhall Delete navigation property townhalls for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhall?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventTownhall -VirtualEventTownhallId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventTownhall -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 townhalls for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md index 96b16ec61f631..2f82fe8b64325 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventTownhallPresenter --- @@ -14,10 +14,7 @@ title: Remove-MgVirtualEventTownhallPresenter ## SYNOPSIS Delete a virtualEventPresenter from a virtual event. -Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar - -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) +Currently the supported virtual event types are:\r\n- virtualEventTownhall\r\n- virtualEventWebinar ## SYNTAX @@ -29,7 +26,6 @@ Remove-MgVirtualEventTownhallPresenter -VirtualEventPresenterId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgVirtualEventTownhallPresenter -InputObject [-IfMatc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,21 +45,16 @@ This cmdlet has the following aliases, ## DESCRIPTION Delete a virtualEventPresenter from a virtual event. -Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar +Currently the supported virtual event types are:\r\n- virtualEventTownhall\r\n- virtualEventWebinar ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Remove-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventPresenterId $virtualEventPresenterId -``` -This example shows how to use the Remove-MgVirtualEventTownhallPresenter Cmdlet. - - ## PARAMETERS ### -Break @@ -416,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -440,27 +430,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter) +- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md index ce7d0024531c1..cd490472f10a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventTownhallSession --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventTownhallSession Delete navigation property sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventTownhallSession -VirtualEventSessionId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventTownhallSession -InputObject [-IfMatch [-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 sessions for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -425,27 +430,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md index 9629e2bd2888f..4a4dd2b82c866 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventTownhallSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventTownhallSessionAttendanceReport Delete navigation property attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventTownhallSessionAttendanceReport -MeetingAttendanceReportId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventTownhallSessionAttendanceReport -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 solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index f50efe04e5993..09694443811e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -Attendance [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttendanceRecordId @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -469,27 +474,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md index d1ebb49a3f18f..45ea248a85b56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinar --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinar Delete navigation property webinars for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinar?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventWebinar -VirtualEventWebinarId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventWebinar -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property webinars for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md index 005fe3ee089c4..48422991d08a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarPresenter --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarPresenter Delete navigation property presenters for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventWebinarPresenter -VirtualEventPresenterId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventWebinarPresenter -InputObject [-IfMatch [-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 presenters for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -425,27 +430,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md index a0c32ff38796d..144ce106d60a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarRegistration --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarRegistration Delete navigation property registrations for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventWebinarRegistration -InputObject [-IfMa [-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 registrations for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -425,27 +430,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md index 507c877d7167d..38735ca31ab6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarRegistrationByEmail --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarRegistrationByEmail Delete navigation property registrations for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventWebinarRegistrationByEmail -Email -VirtualEventWeb [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventWebinarRegistrationByEmail -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 registrations for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md index 0900ffd07ea8e..3383823e23b84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarRegistrationByUserId --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarRegistrationByUserId Delete navigation property registrations for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventWebinarRegistrationByUserId -UserId -VirtualEventW [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventWebinarRegistrationByUserId -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 registrations for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md index f9b0dacd7ec42..a86ffd5cf5061 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarRegistrationConfiguration --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarRegistrationConfiguration Delete navigation property registrationConfiguration for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventWebinarRegistrationConfiguration -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 registrationConfiguration for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index fd07f71ff3689..2806b8e08f9dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion --- @@ -16,9 +16,6 @@ title: Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion Delete a registration question from a webinar. The question can either be a predefined registration question or a custom registration question. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +48,13 @@ Delete a registration question from a webinar. The question can either be a predefined registration question or a custom registration question. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventRegistrationQuestionBaseId $virtualEventRegistrationQuestionBaseId -``` -This example shows how to use the Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion Cmdlet. - - ## PARAMETERS ### -Break @@ -416,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -440,27 +430,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion) +- [](https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md index 103f9afc4090e..3040be2e2fd9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarSession --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarSession Delete navigation property sessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgVirtualEventWebinarSession -VirtualEventSessionId -VirtualEven [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgVirtualEventWebinarSession -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property sessions for solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -424,27 +429,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md index 4bff9bc7b1aa5..e2776c33c16ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarSessionAttendanceReport Delete navigation property attendanceReports for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventWebinarSessionAttendanceReport -MeetingAttendanceReportId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventWebinarSessionAttendanceReport -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 solutions +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -446,27 +451,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index dc4c10bf8c352..c06d4a3b379c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -AttendanceR [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject [-IfMatch ] [-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 attendanceRecords for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttendanceRecordId @@ -443,7 +448,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -467,27 +472,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index a353d736dc58b..669ba05b301b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgVirtualEventExternalEventInformation --- @@ -15,9 +15,6 @@ title: Set-MgVirtualEventExternalEventInformation Invoke action setExternalEventInformation -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaVirtualEventExternalEventInformation](/powershell/module/Microsoft.Graph.Beta.Bookings/Set-MgBetaVirtualEventExternalEventInformation?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -28,7 +25,6 @@ Set-MgVirtualEventExternalEventInformation -VirtualEventId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -39,7 +35,6 @@ Set-MgVirtualEventExternalEventInformation -VirtualEventId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +45,6 @@ Set-MgVirtualEventExternalEventInformation -InputObject [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -61,7 +55,6 @@ Set-MgVirtualEventExternalEventInformation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Invoke action setExternalEventInformation +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -104,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -175,7 +178,7 @@ HelpMessage: '' ### -ExternalEventId - +. ```yaml Type: System.String @@ -480,11 +483,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. [ExternalEventId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -508,27 +511,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgVirtualEventExternalEventInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index 2cf292eb0edf0..86efa95a1681d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgBookingBusinessAppointment --- @@ -15,9 +15,6 @@ title: Stop-MgBookingBusinessAppointment Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) - ## SYNTAX ### CancelExpanded (Default) @@ -28,7 +25,6 @@ Stop-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusines [-CancellationMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -39,7 +35,6 @@ Stop-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusines [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -50,7 +45,6 @@ Stop-MgBookingBusinessAppointment -InputObject [-CancellationMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -61,7 +55,6 @@ Stop-MgBookingBusinessAppointment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,31 +66,19 @@ This cmdlet has the following aliases, Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings $params = @{ - cancellationMessage = "Your appointment has been successfully cancelled. Please call us again." + cancellationMessage = "Your appointment has been successfully cancelled. +Please call us again." } Stop-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params -``` -This example shows how to use the Stop-MgBookingBusinessAppointment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +110,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -232,7 +213,7 @@ HelpMessage: '' ### -CancellationMessage - +. ```yaml Type: System.String @@ -532,11 +513,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. [CancellationMessage ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -560,27 +541,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment) +- [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index cc2fa4e8f73d0..5da101ca29c7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgBookingBusinessCalendarView --- @@ -15,9 +15,6 @@ title: Stop-MgBookingBusinessCalendarView Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) - ## SYNTAX ### CancelExpanded (Default) @@ -28,7 +25,6 @@ Stop-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusine [-CancellationMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -39,7 +35,6 @@ Stop-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusine [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -50,7 +45,6 @@ Stop-MgBookingBusinessCalendarView -InputObject [-CancellationMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -61,7 +55,6 @@ Stop-MgBookingBusinessCalendarView -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -104,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -207,7 +210,7 @@ HelpMessage: '' ### -CancellationMessage - +. ```yaml Type: System.String @@ -507,11 +510,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. [CancellationMessage ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -535,28 +538,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview) +- [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md index 5926e94632a62..b0c46d9d5ff45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: Stop-MgVirtualEvent Invoke action cancel -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### Cancel (Default) @@ -27,7 +24,6 @@ Stop-MgVirtualEvent -VirtualEventId [-ResponseHeadersVariable ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -37,7 +33,6 @@ Stop-MgVirtualEvent -InputObject [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Invoke action cancel +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -382,27 +387,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index d3e70026fde58..51b47ba096522 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgVirtualEventWebinarRegistration --- @@ -15,9 +15,6 @@ title: Stop-MgVirtualEventWebinarRegistration Cancel a registrant's registration record for a webinar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) - ## SYNTAX ### Cancel (Default) @@ -28,7 +25,6 @@ Stop-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -38,7 +34,6 @@ Stop-MgVirtualEventWebinarRegistration -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +45,15 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualEvent.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | VirtualEventRegistration-Anon.ReadWrite.Chat, | +{{ Add code here }} ## PARAMETERS @@ -388,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -412,27 +409,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md index 4ca6ee185d635..00e33727270a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgVirtualEventWebinarRegistrationEmail --- @@ -15,9 +15,6 @@ title: Stop-MgVirtualEventWebinarRegistrationEmail Cancel a registrant's registration record for a webinar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistrationEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistrationEmail?view=graph-powershell-beta) - ## SYNTAX ### Cancel (Default) @@ -27,7 +24,6 @@ Stop-MgVirtualEventWebinarRegistrationEmail -Email -VirtualEventWebinar [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -37,7 +33,6 @@ Stop-MgVirtualEventWebinarRegistrationEmail -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgVirtualEventWebinarRegistrationEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md index 15f7a3cc9446b..1bdc872a635ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgVirtualEventWebinarRegistrationUserId --- @@ -15,9 +15,6 @@ title: Stop-MgVirtualEventWebinarRegistrationUserId Cancel a registrant's registration record for a webinar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistrationUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistrationUserId?view=graph-powershell-beta) - ## SYNTAX ### Cancel (Default) @@ -27,7 +24,6 @@ Stop-MgVirtualEventWebinarRegistrationUserId -UserId -VirtualEventWebin [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -37,7 +33,6 @@ Stop-MgVirtualEventWebinarRegistrationUserId -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. +## 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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -403,27 +408,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgVirtualEventWebinarRegistrationUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index 06805038ee8c4..35980df68c0fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Unpublish-MgBookingBusiness --- @@ -16,9 +16,6 @@ title: Unpublish-MgBookingBusiness Make the scheduling page of this business not available to external customers. Set the isPublished property to false, and the publicUrl property to null. -> [!NOTE] -> To view the beta release of this cmdlet, view [Unpublish-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Unpublish-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### Unpublish (Default) @@ -28,7 +25,6 @@ Unpublish-MgBookingBusiness -BookingBusinessId [-ResponseHeadersVariabl [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnpublishViaIdentity @@ -38,7 +34,6 @@ Unpublish-MgBookingBusiness -InputObject [-ResponseHeadersVa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Make the scheduling page of this business not available to external customers. Set the isPublished property to false, and the publicUrl property to null. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Unpublish-MgBookingBusiness Cmdlet. - - ## PARAMETERS ### -BookingBusinessId @@ -381,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -405,27 +387,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Unpublish-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index c17a44aada0e0..b91fe99318e91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusiness --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusiness Update the properties of a bookingBusiness object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusiness?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -38,7 +35,7 @@ Update-MgBookingBusiness -BookingBusinessId [-ResponseHeadersVariable < [-StaffMembers ] [-WebSiteUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -48,7 +45,6 @@ Update-MgBookingBusiness -BookingBusinessId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -69,7 +65,7 @@ Update-MgBookingBusiness -InputObject [-ResponseHeadersVaria [-StaffMembers ] [-WebSiteUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -79,7 +75,7 @@ Update-MgBookingBusiness -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -91,18 +87,9 @@ This cmdlet has the following aliases, Update the properties of a bookingBusiness object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -119,10 +106,6 @@ $params = @{ Update-MgBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the Update-MgBookingBusiness Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1052,7 +1035,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ADDRESS ``: physicalAddress +ADDRESS : physicalAddress [(Any) ]: This indicates any property can be added to this object. [City ]: The city. [CountryOrRegion ]: The country or region. @@ -1147,7 +1130,7 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -BODYPARAMETER ``: Represents a Microsoft Bookings Business. +BODYPARAMETER : Represents a Microsoft Bookings Business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1375,7 +1358,7 @@ Read-only. [WebSiteUrl ]: The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page. -BOOKINGPAGESETTINGS ``: bookingPageSettings +BOOKINGPAGESETTINGS : bookingPageSettings [(Any) ]: This indicates any property can be added to this object. [AccessControl ]: bookingPageAccessControl [BookingPageColorCode ]: Custom color for the booking page. @@ -1513,7 +1496,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1534,7 +1517,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1671,27 +1654,5 @@ Read-only. ## RELATED LINKS -- [Update-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness) +- [](https://learn.microsoft.com/graph/api/bookingbusiness-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index 9c52c3b6b8c0d..f16eb21edf480 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessAppointment --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusinessAppointment Update the properties of a bookingAppointment object in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -39,7 +36,6 @@ Update-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusin [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -49,7 +45,7 @@ Update-MgBookingBusinessAppointment -BookingAppointmentId -BookingBusin -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -71,7 +67,6 @@ Update-MgBookingBusinessAppointment -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -81,7 +76,7 @@ Update-MgBookingBusinessAppointment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -93,13 +88,53 @@ This cmdlet has the following aliases, Update the properties of a bookingAppointment object in the specified bookingBusiness. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Bookings + +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + end = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + dateTime = "2018-05-06T12:30:00.0000000+00:00" + timeZone = "UTC" + } + start = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + dateTime = "2018-05-06T12:00:00.0000000+00:00" + timeZone = "UTC" + } +} + +Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Bookings + +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + customers = @( + @{ + "@odata.type" = "#microsoft.graph.bookingCustomerInformation" + customerId = "cd56bb19-c348-42c6-af5c-09818c87fb8c" + name = "John Doe" + emailAddress = "john.doe@example.com" + phone = "313-555-5555" + } + @{ + "@odata.type" = "#microsoft.graph.bookingCustomerInformation" + customerId = "72f148fa-9a86-4c59-b277-f5089d9ea0e7" + name = "Jane Smith" + emailAddress = "jane.smith@example.com" + phone = "248-555-5678" + } + ) +} + +Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ## PARAMETERS @@ -1348,7 +1383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1433,13 +1468,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1467,7 +1502,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION ``: location +SERVICELOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1492,7 +1527,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1501,28 +1536,5 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment) +- [](https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md index 4e24d3a572d9d..751b94403c4b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessCalendarView --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusinessCalendarView Update the navigation property calendarView in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -39,7 +36,6 @@ Update-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusi [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -49,7 +45,7 @@ Update-MgBookingBusinessCalendarView -BookingAppointmentId -BookingBusi -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -71,7 +67,6 @@ Update-MgBookingBusinessCalendarView -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -81,7 +76,7 @@ Update-MgBookingBusinessCalendarView -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -93,6 +88,16 @@ This cmdlet has the following aliases, Update the navigation property calendarView in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalInformation @@ -1340,7 +1345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1425,13 +1430,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1459,7 +1464,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION ``: location +SERVICELOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1484,7 +1489,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1493,27 +1498,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index 1ecacad11820e..665a056a33f48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessCustomQuestion --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusinessCustomQuestion Update the properties of a bookingCustomQuestion object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgBookingBusinessCustomQuestion -BookingBusinessId -BookingCusto [-LastUpdatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,7 @@ Update-MgBookingBusinessCustomQuestion -BookingBusinessId -BookingCusto -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,6 @@ Update-MgBookingBusinessCustomQuestion -InputObject [-LastUpdatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +56,7 @@ Update-MgBookingBusinessCustomQuestion -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Update the properties of a bookingCustomQuestion object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -98,10 +84,6 @@ $params = @{ Update-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -BodyParameter $params -``` -This example shows how to use the Update-MgBookingBusinessCustomQuestion Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -655,7 +637,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a custom question of the business. +BODYPARAMETER : Represents a custom question of the business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -669,7 +651,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -693,27 +675,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion) +- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index 8ac9faedf909f..5fe42f5b341f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessCustomer --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusinessCustomer Update the properties of a bookingCustomer object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgBookingBusinessCustomer -BookingBusinessId -BookingCustomerBas [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgBookingBusinessCustomer -BookingBusinessId -BookingCustomerBas -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,7 @@ Update-MgBookingBusinessCustomer -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +53,6 @@ Update-MgBookingBusinessCustomer -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,18 +64,9 @@ This cmdlet has the following aliases, Update the properties of a bookingCustomer object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BookingsAppointment.ReadWrite.All, Bookings.ReadWrite.All, Bookings.Read.All, Bookings.Manage.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -92,10 +78,6 @@ $params = @{ Update-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId -BodyParameter $params -``` -This example shows how to use the Update-MgBookingBusinessCustomer Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -509,7 +491,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -533,27 +515,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer) +- [](https://learn.microsoft.com/graph/api/bookingcustomer-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 873d509d7f618..78bc6821795de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessService --- @@ -14,10 +14,7 @@ title: Update-MgBookingBusinessService ## SYNOPSIS Update the properties of a bookingService object in the specified bookingBusiness. -The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessService?view=graph-powershell-beta) +The following are some examples you can customize for a service:\r\n- Price\r\n- Typical length of an appointment\r\n- Reminders\r\n- Any time buffer to set up before or finish up after the service\r\n- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. ## SYNTAX @@ -38,7 +35,6 @@ Update-MgBookingBusinessService -BookingBusinessId -BookingServiceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -48,7 +44,7 @@ Update-MgBookingBusinessService -BookingBusinessId -BookingServiceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -67,7 +63,6 @@ Update-MgBookingBusinessService -InputObject [-ResponseHeade [-StaffMemberIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -77,7 +72,7 @@ Update-MgBookingBusinessService -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -88,15 +83,17 @@ This cmdlet has the following aliases, ## DESCRIPTION Update the properties of a bookingService object in the specified bookingBusiness. -The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. +The following are some examples you can customize for a service:\r\n- Price\r\n- Typical length of an appointment\r\n- Reminders\r\n- Any time buffer to set up before or finish up after the service\r\n- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} -**Permissions** +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -1149,7 +1146,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Represents a particular service offered by a booking business. +BODYPARAMETER : Represents a particular service offered by a booking business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1250,7 +1247,7 @@ CUSTOMQUESTIONS : Contains the set o [IsRequired ]: Indicates whether it's mandatory to answer the custom question. [QuestionId ]: The ID of the custom question. -DEFAULTLOCATION ``: location +DEFAULTLOCATION : location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1282,7 +1279,7 @@ The value of this property is available only when reading this bookingService by It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1303,7 +1300,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1336,28 +1333,5 @@ Use the email address specified in the email property of the bookingBusiness ent ## RELATED LINKS -- [Update-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice) +- [](https://learn.microsoft.com/graph/api/bookingservice-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index 7f8a53f46a3e9..34b9d8df9cec8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingBusinessStaffMember --- @@ -15,9 +15,6 @@ title: Update-MgBookingBusinessStaffMember Update the properties of a bookingStaffMember in the specified bookingBusiness. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgBookingBusinessStaffMember -BookingBusinessId -BookingStaffMem [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgBookingBusinessStaffMember -BookingBusinessId -BookingStaffMem -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,7 @@ Update-MgBookingBusinessStaffMember -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +53,6 @@ Update-MgBookingBusinessStaffMember -InputObject -BodyParame [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,13 +64,15 @@ This cmdlet has the following aliases, Update the properties of a bookingStaffMember in the specified bookingBusiness. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | +{{ Add code here }} ## PARAMETERS @@ -490,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -514,28 +511,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember) -- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember) +- [](https://learn.microsoft.com/graph/api/bookingstaffmember-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md index 83d0de80cdde5..92a28a21ab047 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgBookingCurrency --- @@ -15,9 +15,6 @@ title: Update-MgBookingCurrency Update the navigation property bookingCurrencies in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingCurrency?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgBookingCurrency -BookingCurrencyId [-ResponseHeadersVariable < [-AdditionalProperties ] [-Id ] [-Symbol ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgBookingCurrency -BookingCurrencyId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,7 @@ Update-MgBookingCurrency -InputObject [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Symbol ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +53,7 @@ Update-MgBookingCurrency -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -69,6 +65,16 @@ This cmdlet has the following aliases, Update the navigation property bookingCurrencies in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -484,14 +490,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 ``: bookingCurrency +BODYPARAMETER : bookingCurrency [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Symbol ]: The currency symbol. For example, the currency symbol for the US dollar and for the Australian dollar is $. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -515,27 +521,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md index 240a3f9dbc85f..e4133407d670a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEvent --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEvent Update the navigation property events in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded1 (Default) @@ -33,7 +30,7 @@ Update-MgVirtualEvent -VirtualEventId [-ResponseHeadersVariable ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update1 @@ -43,7 +40,6 @@ Update-MgVirtualEvent -VirtualEventId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -59,7 +55,7 @@ Update-MgVirtualEvent -InputObject [-ResponseHeadersVariable [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +65,6 @@ Update-MgVirtualEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property events in solutions +## 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 ``: virtualEvent +BODYPARAMETER : virtualEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -916,7 +921,7 @@ Read-only. [StartDateTime ]: dateTimeTimeZone [Status ]: virtualEventStatus -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -935,12 +940,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -955,7 +960,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1127,11 +1132,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1140,27 +1145,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md index 35ca6f72c3d72..3983df64e1173 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventPresenter --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventPresenter Update the navigation property presenters in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventPresenter?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgVirtualEventPresenter -VirtualEventId -VirtualEventPresenterId [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,7 @@ Update-MgVirtualEventPresenter -VirtualEventId -VirtualEventPresenterId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,6 @@ Update-MgVirtualEventPresenter -InputObject [-ResponseHeader [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +56,7 @@ Update-MgVirtualEventPresenter -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +68,16 @@ This cmdlet has the following aliases, Update the navigation property presenters in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -570,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 ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -594,14 +599,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -622,7 +627,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -638,27 +643,4 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [Update-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md index 238a474aa4864..c4c4344c3f93d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventSession --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventSession Update the navigation property sessions in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -44,7 +41,6 @@ Update-MgVirtualEventSession -VirtualEventId -VirtualEventSessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -54,7 +50,7 @@ Update-MgVirtualEventSession -VirtualEventId -VirtualEventSessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -80,7 +76,6 @@ Update-MgVirtualEventSession -InputObject [-ResponseHeadersV [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -90,7 +85,7 @@ Update-MgVirtualEventSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -102,6 +97,16 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1551,7 +1556,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. @@ -1560,7 +1565,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1689,24 +1694,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1727,12 +1732,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1743,23 +1748,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1767,27 +1772,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [Update-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md index 2cccb213e4a4e..1909261b8a439 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventSessionAttendanceReport Update the navigation property attendanceReports in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgVirtualEventSessionAttendanceReport -MeetingAttendanceReportId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgVirtualEventSessionAttendanceReport -MeetingAttendanceReportId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -54,7 +51,7 @@ Update-MgVirtualEventSessionAttendanceReport -InputObject [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +61,7 @@ Update-MgVirtualEventSessionAttendanceReport -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +73,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -687,7 +694,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 +750,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -767,27 +774,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index cbaf39bc74c1a..07cf7bb47ad94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgVirtualEventSessionAttendanceReportAttendanceRecord -AttendanceRecordId [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgVirtualEventSessionAttendanceReportAttendanceRecord -AttendanceRecordId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,6 @@ Update-MgVirtualEventSessionAttendanceReportAttendanceRecord -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +62,7 @@ Update-MgVirtualEventSessionAttendanceReportAttendanceRecord -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -745,7 +750,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. @@ -772,7 +777,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. @@ -780,14 +785,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -811,27 +816,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md index 9cd43605d1627..65b06cc848e13 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventTownhall --- @@ -16,9 +16,6 @@ title: Update-MgVirtualEventTownhall Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhall?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -36,7 +33,7 @@ Update-MgVirtualEventTownhall -VirtualEventTownhallId [-ResponseHeaders [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +43,7 @@ Update-MgVirtualEventTownhall -VirtualEventTownhallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -64,7 +61,7 @@ Update-MgVirtualEventTownhall -InputObject [-ResponseHeaders [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -74,7 +71,7 @@ Update-MgVirtualEventTownhall -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -88,9 +85,8 @@ Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -107,10 +103,6 @@ $params = @{ Update-MgVirtualEventTownhall -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params -``` -This example shows how to use the Update-MgVirtualEventTownhall Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -889,7 +881,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventTownhall +BODYPARAMETER : virtualEventTownhall [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -1076,7 +1068,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -1095,12 +1087,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1115,7 +1107,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1294,11 +1286,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1307,27 +1299,5 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall) +- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md index 8859988b36a2b..35f70ebf99564 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventTownhallPresenter --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventTownhallPresenter Update the navigation property presenters in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgVirtualEventTownhallPresenter -VirtualEventPresenterId [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgVirtualEventTownhallPresenter -VirtualEventPresenterId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,6 @@ Update-MgVirtualEventTownhallPresenter -InputObject [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,7 @@ Update-MgVirtualEventTownhallPresenter -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 presenters in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -572,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -596,14 +600,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -624,7 +628,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -640,27 +644,4 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [Update-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md index 82601fbd24586..badd94d000ee6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventTownhallSession --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventTownhallSession Update the navigation property sessions in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -44,7 +41,6 @@ Update-MgVirtualEventTownhallSession -VirtualEventSessionId [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -55,7 +51,6 @@ Update-MgVirtualEventTownhallSession -VirtualEventSessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -82,7 +77,6 @@ Update-MgVirtualEventTownhallSession -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -92,7 +86,7 @@ Update-MgVirtualEventTownhallSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -104,6 +98,16 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1553,7 +1557,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. @@ -1562,7 +1566,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1691,24 +1695,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1729,12 +1733,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1745,23 +1749,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1769,27 +1773,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [Update-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md index 5202d23cb0ea5..580ed7a4b2e72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventTownhallSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventTownhallSessionAttendanceReport Update the navigation property attendanceReports in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgVirtualEventTownhallSessionAttendanceReport -MeetingAttendanceReportId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgVirtualEventTownhallSessionAttendanceReport -MeetingAttendanceReportId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgVirtualEventTownhallSessionAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgVirtualEventTownhallSessionAttendanceReport -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 attendanceReports in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -688,7 +695,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. @@ -744,7 +751,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -768,27 +775,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 21839cc36a42d..5ff9c6eb657a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,6 @@ Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -Attendance [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -45,7 +41,6 @@ Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -Attendance [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +55,6 @@ Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -71,7 +65,6 @@ Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -749,7 +752,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. @@ -776,7 +779,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. @@ -784,14 +787,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -815,27 +818,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md index a008d3a15904b..9034262e11274 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinar --- @@ -16,9 +16,6 @@ title: Update-MgVirtualEventWebinar Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinar?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -37,7 +34,7 @@ Update-MgVirtualEventWebinar -VirtualEventWebinarId [-ResponseHeadersVa [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -47,7 +44,7 @@ Update-MgVirtualEventWebinar -VirtualEventWebinarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -66,7 +63,7 @@ Update-MgVirtualEventWebinar -InputObject [-ResponseHeadersV [-Settings ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -76,7 +73,7 @@ Update-MgVirtualEventWebinar -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -90,9 +87,8 @@ Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -109,10 +105,6 @@ $params = @{ Update-MgVirtualEventWebinar -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -``` -This example shows how to use the Update-MgVirtualEventWebinar Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -890,7 +882,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventWebinar +BODYPARAMETER : virtualEventWebinar [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -1116,7 +1108,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY ``: communicationsIdentitySet +CREATEDBY : 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. @@ -1135,12 +1127,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION ``: itemBody +DESCRIPTION : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1155,7 +1147,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1199,7 +1191,7 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -REGISTRATIONCONFIGURATION ``: virtualEventWebinarRegistrationConfiguration +REGISTRATIONCONFIGURATION : virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -1498,11 +1490,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS ``: virtualEventSettings +SETTINGS : virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1511,27 +1503,5 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar) +- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md index af173f799e554..b194706e9e77e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarPresenter --- @@ -14,10 +14,7 @@ title: Update-MgVirtualEventWebinarPresenter ## SYNOPSIS Update the properties of a virtualEventPresenter object. -Currently the supported virtual event types are:\r- virtualEventWebinar. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) +Currently the supported virtual event types are:\r\n- virtualEventWebinar. ## SYNTAX @@ -31,7 +28,6 @@ Update-MgVirtualEventWebinarPresenter -VirtualEventPresenterId [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgVirtualEventWebinarPresenter -VirtualEventPresenterId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +49,6 @@ Update-MgVirtualEventWebinarPresenter -InputObject [-PresenterDetails ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -64,7 +58,7 @@ Update-MgVirtualEventWebinarPresenter -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,12 +69,11 @@ This cmdlet has the following aliases, ## DESCRIPTION Update the properties of a virtualEventPresenter object. -Currently the supported virtual event types are:\r- virtualEventWebinar. +Currently the supported virtual event types are:\r\n- virtualEventWebinar. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Bookings @@ -99,10 +92,6 @@ $params = @{ Update-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventPresenterId $virtualEventPresenterId -BodyParameter $params -``` -This example shows how to use the Update-MgVirtualEventWebinarPresenter Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -600,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventPresenter +BODYPARAMETER : virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -624,14 +613,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -652,7 +641,7 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS ``: virtualEventPresenterDetails +PRESENTERDETAILS : virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -668,27 +657,5 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [Update-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter) +- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md index 98170a4f7a7d6..3a8fd4ad5a6a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarRegistration --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarRegistration Update the navigation property registrations in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,6 @@ Update-MgVirtualEventWebinarRegistration -VirtualEventRegistrationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +56,7 @@ Update-MgVirtualEventWebinarRegistration -InputObject [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -70,7 +66,7 @@ Update-MgVirtualEventWebinarRegistration -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -82,6 +78,16 @@ This cmdlet has the following aliases, Update the navigation property registrations in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -829,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistration +BODYPARAMETER : virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -986,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -994,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1156,27 +1162,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md index 1083b34b518e7..fecd43447263b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarRegistrationByEmail --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarRegistrationByEmail Update the navigation property registrations in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgVirtualEventWebinarRegistrationByEmail -Email -VirtualEventWeb [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgVirtualEventWebinarRegistrationByEmail -InputObject [-Sessions ] [-Status ] [-UserId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +56,7 @@ Update-MgVirtualEventWebinarRegistrationByEmail -Email -VirtualEventWeb -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +66,7 @@ Update-MgVirtualEventWebinarRegistrationByEmail -InputObject -BodyParameter [-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 registrations in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -828,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistration +BODYPARAMETER : virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -985,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -993,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1155,27 +1162,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md index 177559df707f5..dce289627039f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarRegistrationByUserId --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarRegistrationByUserId Update the navigation property registrations in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgVirtualEventWebinarRegistrationByUserId -UserId -VirtualEventW [-Sessions ] [-Status ] [-UserId1 ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgVirtualEventWebinarRegistrationByUserId -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +56,7 @@ Update-MgVirtualEventWebinarRegistrationByUserId -UserId -VirtualEventW -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +66,7 @@ Update-MgVirtualEventWebinarRegistrationByUserId -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 registrations in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -828,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistration +BODYPARAMETER : virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -985,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -993,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1155,27 +1162,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index 4b447ac6f3431..abe192671b4d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarRegistrationConfiguration --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarRegistrationConfiguration Update the navigation property registrationConfiguration in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId ] [-RegistrationWebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgVirtualEventWebinarRegistrationConfiguration -InputObject ] [-RegistrationWebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +59,6 @@ Update-MgVirtualEventWebinarRegistrationConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property registrationConfiguration in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -323,7 +328,7 @@ HelpMessage: '' ### -IsManualApprovalEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -350,7 +355,7 @@ HelpMessage: '' ### -IsWaitlistEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -598,7 +603,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventWebinarRegistrationConfiguration +BODYPARAMETER : virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -613,7 +618,7 @@ Read-only. [IsManualApprovalEnabled ]: [IsWaitlistEnabled ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -644,27 +649,4 @@ The default value is false. ## RELATED LINKS -- [Update-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 51b699e7cc69d..f491743ce1c3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarRegistrationConfigurationQuestion --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarRegistrationConfigurationQuestion Update the navigation property questions in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgVirtualEventWebinarRegistrationConfigurationQuestion [-Id ] [-IsRequired] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgVirtualEventWebinarRegistrationConfigurationQuestion [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +47,6 @@ Update-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-IsRequired] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,6 @@ Update-MgVirtualEventWebinarRegistrationConfigurationQuestion -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,16 @@ This cmdlet has the following aliases, Update the navigation property questions in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -544,7 +547,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: virtualEventRegistrationQuestionBase +BODYPARAMETER : virtualEventRegistrationQuestionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -552,7 +555,7 @@ Read-only. [IsRequired ]: Indicates whether an answer to the question is required. The default value is false. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -576,27 +579,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md index e89a1660fd938..b44a2bd960d6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarSession --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarSession Update the navigation property sessions in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -44,7 +41,6 @@ Update-MgVirtualEventWebinarSession -VirtualEventSessionId -VirtualEven [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -54,7 +50,7 @@ Update-MgVirtualEventWebinarSession -VirtualEventSessionId -VirtualEven -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -81,7 +77,6 @@ Update-MgVirtualEventWebinarSession -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -91,7 +86,7 @@ Update-MgVirtualEventWebinarSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -103,6 +98,16 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1552,7 +1557,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. @@ -1561,7 +1566,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 ``: virtualEventSession +BODYPARAMETER : virtualEventSession [(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. @@ -1690,24 +1695,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME ``: dateTimeTimeZone +ENDDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1728,12 +1733,12 @@ INPUTOBJECT ``: Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1744,23 +1749,23 @@ 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 -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. -STARTDATETIME ``: dateTimeTimeZone +STARTDATETIME : dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1768,27 +1773,4 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [Update-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md index 790d925b90512..aa787c7d08a9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarSessionAttendanceReport --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarSessionAttendanceReport Update the navigation property attendanceReports in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReport -MeetingAttendanceReportId < [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReport -MeetingAttendanceReportId < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -54,7 +51,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +61,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReport -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +73,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -687,7 +694,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 +750,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -767,27 +774,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index cd71dd713b4a9..ba746c483b0f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Bookings-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.Bookings -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord --- @@ -15,9 +15,6 @@ title: Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -AttendanceR [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -AttendanceR -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,6 @@ Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +62,7 @@ Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -745,7 +750,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. @@ -772,7 +777,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. @@ -780,14 +785,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -811,27 +816,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord) From 14044a7072f79f53f29a4349c67cd4cd1fd94562 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:35:48 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- .../Get-MgBookingBusiness.md | 24 +++++++++- .../Get-MgBookingBusinessAppointment.md | 24 +++++++++- .../Get-MgBookingBusinessAppointmentCount.md | 24 +++++++++- .../Get-MgBookingBusinessCalendarView.md | 24 +++++++++- .../Get-MgBookingBusinessCalendarViewCount.md | 24 +++++++++- .../Get-MgBookingBusinessCount.md | 22 +++++++++ .../Get-MgBookingBusinessCustomQuestion.md | 24 +++++++++- ...et-MgBookingBusinessCustomQuestionCount.md | 24 +++++++++- .../Get-MgBookingBusinessCustomer.md | 24 +++++++++- .../Get-MgBookingBusinessCustomerCount.md | 24 +++++++++- .../Get-MgBookingBusinessService.md | 24 +++++++++- .../Get-MgBookingBusinessServiceCount.md | 24 +++++++++- .../Get-MgBookingBusinessStaffAvailability.md | 30 ++++++++++-- .../Get-MgBookingBusinessStaffMember.md | 24 +++++++++- .../Get-MgBookingBusinessStaffMemberCount.md | 24 +++++++++- .../Get-MgBookingCurrency.md | 24 +++++++++- .../Get-MgBookingCurrencyCount.md | 22 +++++++++ .../Get-MgVirtualEvent.md | 24 +++++++++- .../Get-MgVirtualEventCount.md | 22 +++++++++ .../Get-MgVirtualEventPresenter.md | 24 +++++++++- .../Get-MgVirtualEventPresenterCount.md | 24 +++++++++- .../Get-MgVirtualEventSession.md | 24 +++++++++- ...t-MgVirtualEventSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- ...onAttendanceReportAttendanceRecordCount.md | 24 +++++++++- ...irtualEventSessionAttendanceReportCount.md | 24 +++++++++- .../Get-MgVirtualEventSessionCount.md | 24 +++++++++- .../Get-MgVirtualEventTownhall.md | 24 +++++++++- ...t-MgVirtualEventTownhallByUserIdAndRole.md | 24 +++++++++- .../Get-MgVirtualEventTownhallByUserRole.md | 24 +++++++++- .../Get-MgVirtualEventTownhallCount.md | 22 +++++++++ .../Get-MgVirtualEventTownhallPresenter.md | 28 +++++++++-- ...et-MgVirtualEventTownhallPresenterCount.md | 24 +++++++++- .../Get-MgVirtualEventTownhallSession.md | 24 +++++++++- ...ualEventTownhallSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- ...onAttendanceReportAttendanceRecordCount.md | 24 +++++++++- ...entTownhallSessionAttendanceReportCount.md | 24 +++++++++- .../Get-MgVirtualEventTownhallSessionCount.md | 24 +++++++++- .../Get-MgVirtualEventWebinar.md | 24 +++++++++- ...et-MgVirtualEventWebinarByUserIdAndRole.md | 24 +++++++++- .../Get-MgVirtualEventWebinarByUserRole.md | 24 +++++++++- .../Get-MgVirtualEventWebinarCount.md | 22 +++++++++ .../Get-MgVirtualEventWebinarPresenter.md | 24 +++++++++- ...Get-MgVirtualEventWebinarPresenterCount.md | 24 +++++++++- .../Get-MgVirtualEventWebinarRegistration.md | 24 +++++++++- ...gVirtualEventWebinarRegistrationByEmail.md | 24 +++++++++- ...VirtualEventWebinarRegistrationByUserId.md | 24 +++++++++- ...alEventWebinarRegistrationConfiguration.md | 24 +++++++++- ...ebinarRegistrationConfigurationQuestion.md | 24 +++++++++- ...rRegistrationConfigurationQuestionCount.md | 24 +++++++++- ...-MgVirtualEventWebinarRegistrationCount.md | 24 +++++++++- ...gVirtualEventWebinarRegistrationSession.md | 24 +++++++++- ...ualEventWebinarRegistrationSessionCount.md | 24 +++++++++- .../Get-MgVirtualEventWebinarSession.md | 28 +++++++++-- ...tualEventWebinarSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- ...onAttendanceReportAttendanceRecordCount.md | 24 +++++++++- ...ventWebinarSessionAttendanceReportCount.md | 24 +++++++++- .../Get-MgVirtualEventWebinarSessionCount.md | 24 +++++++++- .../Microsoft.Graph.Bookings.md | 19 ++++++++ .../New-MgBookingBusiness.md | 30 ++++++++++-- .../New-MgBookingBusinessAppointment.md | 32 +++++++++++-- .../New-MgBookingBusinessCalendarView.md | 32 +++++++++++-- .../New-MgBookingBusinessCustomQuestion.md | 26 ++++++++++- .../New-MgBookingBusinessCustomer.md | 24 +++++++++- .../New-MgBookingBusinessService.md | 30 ++++++++++-- .../New-MgBookingBusinessStaffMember.md | 24 +++++++++- .../New-MgBookingCurrency.md | 24 +++++++++- .../New-MgVirtualEvent.md | 34 +++++++++++--- .../New-MgVirtualEventPresenter.md | 30 ++++++++++-- .../New-MgVirtualEventSession.md | 46 ++++++++++++++----- ...w-MgVirtualEventSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../New-MgVirtualEventTownhall.md | 34 +++++++++++--- .../New-MgVirtualEventTownhallPresenter.md | 34 +++++++++++--- .../New-MgVirtualEventTownhallSession.md | 46 ++++++++++++++----- ...ualEventTownhallSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../New-MgVirtualEventWebinar.md | 36 ++++++++++++--- .../New-MgVirtualEventWebinarPresenter.md | 34 +++++++++++--- .../New-MgVirtualEventWebinarRegistration.md | 28 +++++++++-- ...ebinarRegistrationConfigurationQuestion.md | 26 ++++++++++- .../New-MgVirtualEventWebinarSession.md | 46 ++++++++++++++----- ...tualEventWebinarSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../Publish-MgBookingBusiness.md | 24 +++++++++- .../Publish-MgVirtualEvent.md | 24 +++++++++- .../Remove-MgBookingBusiness.md | 24 +++++++++- .../Remove-MgBookingBusinessAppointment.md | 24 +++++++++- .../Remove-MgBookingBusinessCalendarView.md | 24 +++++++++- .../Remove-MgBookingBusinessCustomQuestion.md | 24 +++++++++- .../Remove-MgBookingBusinessCustomer.md | 24 +++++++++- .../Remove-MgBookingBusinessService.md | 24 +++++++++- .../Remove-MgBookingBusinessStaffMember.md | 24 +++++++++- .../Remove-MgBookingCurrency.md | 24 +++++++++- .../Remove-MgVirtualEvent.md | 24 +++++++++- .../Remove-MgVirtualEventPresenter.md | 24 +++++++++- .../Remove-MgVirtualEventSession.md | 24 +++++++++- ...e-MgVirtualEventSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- .../Remove-MgVirtualEventTownhall.md | 24 +++++++++- .../Remove-MgVirtualEventTownhallPresenter.md | 28 +++++++++-- .../Remove-MgVirtualEventTownhallSession.md | 24 +++++++++- ...ualEventTownhallSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- .../Remove-MgVirtualEventWebinar.md | 24 +++++++++- .../Remove-MgVirtualEventWebinarPresenter.md | 24 +++++++++- ...emove-MgVirtualEventWebinarRegistration.md | 24 +++++++++- ...gVirtualEventWebinarRegistrationByEmail.md | 24 +++++++++- ...VirtualEventWebinarRegistrationByUserId.md | 24 +++++++++- ...alEventWebinarRegistrationConfiguration.md | 24 +++++++++- ...ebinarRegistrationConfigurationQuestion.md | 24 +++++++++- .../Remove-MgVirtualEventWebinarSession.md | 24 +++++++++- ...tualEventWebinarSessionAttendanceReport.md | 24 +++++++++- ...SessionAttendanceReportAttendanceRecord.md | 24 +++++++++- ...-MgVirtualEventExternalEventInformation.md | 26 ++++++++++- .../Stop-MgBookingBusinessAppointment.md | 26 ++++++++++- .../Stop-MgBookingBusinessCalendarView.md | 26 ++++++++++- .../Stop-MgVirtualEvent.md | 24 +++++++++- .../Stop-MgVirtualEventWebinarRegistration.md | 24 +++++++++- ...-MgVirtualEventWebinarRegistrationEmail.md | 24 +++++++++- ...MgVirtualEventWebinarRegistrationUserId.md | 24 +++++++++- .../Unpublish-MgBookingBusiness.md | 24 +++++++++- .../Update-MgBookingBusiness.md | 32 +++++++++++-- .../Update-MgBookingBusinessAppointment.md | 32 +++++++++++-- .../Update-MgBookingBusinessCalendarView.md | 32 +++++++++++-- .../Update-MgBookingBusinessCustomQuestion.md | 26 ++++++++++- .../Update-MgBookingBusinessCustomer.md | 24 +++++++++- .../Update-MgBookingBusinessService.md | 34 +++++++++++--- .../Update-MgBookingBusinessStaffMember.md | 24 +++++++++- .../Update-MgBookingCurrency.md | 26 ++++++++++- .../Update-MgVirtualEvent.md | 36 ++++++++++++--- .../Update-MgVirtualEventPresenter.md | 30 ++++++++++-- .../Update-MgVirtualEventSession.md | 46 ++++++++++++++----- ...e-MgVirtualEventSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../Update-MgVirtualEventTownhall.md | 36 ++++++++++++--- .../Update-MgVirtualEventTownhallPresenter.md | 30 ++++++++++-- .../Update-MgVirtualEventTownhallSession.md | 46 ++++++++++++++----- ...ualEventTownhallSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- .../Update-MgVirtualEventWebinar.md | 38 +++++++++++---- .../Update-MgVirtualEventWebinarPresenter.md | 34 +++++++++++--- ...pdate-MgVirtualEventWebinarRegistration.md | 28 +++++++++-- ...gVirtualEventWebinarRegistrationByEmail.md | 28 +++++++++-- ...VirtualEventWebinarRegistrationByUserId.md | 28 +++++++++-- ...alEventWebinarRegistrationConfiguration.md | 26 ++++++++++- ...ebinarRegistrationConfigurationQuestion.md | 26 ++++++++++- .../Update-MgVirtualEventWebinarSession.md | 46 ++++++++++++++----- ...tualEventWebinarSessionAttendanceReport.md | 26 ++++++++++- ...SessionAttendanceReportAttendanceRecord.md | 30 ++++++++++-- 152 files changed, 3693 insertions(+), 352 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index 1fe204eac90c1..1201f99ef5082 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index 5d59cb3e265a3..596f5b03bfae1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment) - [](https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 125a84d496ef8..18800e6db30fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md index d0b1b04b28933..bca640092fbd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md @@ -600,7 +600,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -626,3 +626,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index 96b3ccb8ca978..7085277a90468 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -411,3 +411,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index a8cbe0c4aa4fa..a384a819c276f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index fe7ecc8785624..bbae79953f870 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion) - [](https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index 7287aaad3a59f..838b9aade22d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index 942677b6b76f4..78b74858337f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -582,3 +582,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer) - [](https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index 43e59506b4f15..386724e5810d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index ddcb362f393cd..86593bb5cebfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice) - [](https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index 21c18afd6384a..aeb02a0077c04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index a2eb6af0f37dd..c4bd838a86ac2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -532,7 +532,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [EndDateTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -542,13 +542,13 @@ See below for more possible values. [StaffIds ]: [StartDateTime ]: dateTimeTimeZone -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -569,7 +569,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -580,3 +580,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability) - [](https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index 3ee2ed2ed63b4..a4dd88ae2eb9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -582,3 +582,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember) - [](https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index 9f9ce4b79d0aa..20a3a8ca70f4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index e338497b6e8a3..1726034bbd718 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -552,3 +552,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency) - [](https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index bf1a3a8a4286a..8336f7c8ffa5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md index a67f241406690..9a199a234212a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md index b8bedeea4c014..c3074d766b840 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md index 13b311cabfaab..70a8e648239e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md index a5b8359641b29..e4c10feebbc49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md index 22998683c57ca..74ea13cc00e17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md index 0fa7a3ad50daf..af9259ec10576 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -608,3 +608,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 66eb1ae522a65..a509b0cd198fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -637,3 +637,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md index 83409c6e3f212..8f5082e04e2e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md index ad2d5d82360e4..d75fea74f73d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -387,3 +387,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md index 9f8a2b0db1845..e4739b1af4cdf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index eebc970315c3f..63b23c01e525c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall) - [](https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index f07656beb1fae..b90e5f044d10c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -495,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -521,3 +521,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole) - [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index 0193a4eeed936..c744d75ee5d51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -471,7 +471,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole) - [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md index f6f187e3097c8..57553a3dc1425 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index 256659437e02a..fb7805db6f8ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -14,7 +14,7 @@ title: Get-MgVirtualEventTownhallPresenter ## SYNOPSIS Read the properties and relationships of a virtualEventPresenter object. -Currently the supported virtual event types are: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar ## SYNTAX @@ -56,7 +56,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Read the properties and relationships of a virtualEventPresenter object. -Currently the supported virtual event types are: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter) - [](https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md index e0c8c497108e5..b55ae35373e89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index 42b74ee41fef9..ae61df278f84b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md index 7df471c83fe3c..53c86f0ce4e03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -609,3 +609,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport) - [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index cd4a5df0433fa..62721c6805739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -637,3 +637,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord) - [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md index 9f87a5b219fae..e68d2cbd176ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md index 54dd8e5146161..94ea6b233d378 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index c40596f304256..2caf05dd0be51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index 283fec97b346f..b00e81afeef3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -552,3 +552,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar) - [](https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index 00c56f545a20d..0455a0e89fdac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -495,7 +495,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -521,3 +521,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole) - [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 4127e55635a0c..114f3b4f529e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -471,7 +471,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -497,3 +497,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole) - [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md index b57898e958443..fe19f2d21ad91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md index 060d1e2a476f9..e96d6ac357594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md index c6d601c37beb4..4800c29a438f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index d0a8823304a1a..877de5b664717 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration) - [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md index e774d79e3fc2b..e907cec16c861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -391,3 +391,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail) - [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md index 685e813f62bf7..1b3e51e68025c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -391,3 +391,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid) - [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md index 9980ef62b9371..33e2bf2e94453 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -368,3 +368,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration) - [](https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 421334ca3b32f..1deca32b36ac0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion) - [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md index 015e8698c37ef..8420b398a43e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md index af42245f9d2cb..b36647d99173f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md index 6337e51d4e842..c0b884228e89f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md @@ -580,7 +580,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -606,3 +606,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession) - [](https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md index 49063ca13127b..9834f8cf8e964 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 129134533bf3c..4533f9a1dc371 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -14,7 +14,7 @@ title: Get-MgVirtualEventWebinarSession ## SYNOPSIS Read the properties and relationships of a virtualEventSession object. -Currently, the following virtual event types are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## SYNTAX @@ -56,7 +56,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Read the properties and relationships of a virtualEventSession object. -Currently, the following virtual event types are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES @@ -553,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession) - [](https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md index 497f0b00352c3..6c5055f1e1cd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -609,3 +609,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport) - [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 0271a1e0b7419..44e036e10fdc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -610,7 +610,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -636,3 +636,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord) - [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md index d84a48010e55c..9fe883e65e44e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md index d8be702d5153a..0f403482bf2c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index f8eaf2a670543..4043504208147 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md index d4afe05e78dc3..7727b004e47d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Microsoft.Graph.Bookings.md @@ -365,3 +365,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md index 293080b6681a7..e5d27e8a85d21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md @@ -822,7 +822,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ADDRESS : physicalAddress +ADDRESS ``: physicalAddress [(Any) ]: This indicates any property can be added to this object. [City ]: The city. [CountryOrRegion ]: The country or region. @@ -917,7 +917,7 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -BODYPARAMETER : Represents a Microsoft Bookings Business. +BODYPARAMETER ``: Represents a Microsoft Bookings Business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1145,7 +1145,7 @@ Read-only. [WebSiteUrl ]: The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page. -BOOKINGPAGESETTINGS : bookingPageSettings +BOOKINGPAGESETTINGS ``: bookingPageSettings [(Any) ]: This indicates any property can be added to this object. [AccessControl ]: bookingPageAccessControl [BookingPageColorCode ]: Custom color for the booking page. @@ -1283,7 +1283,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1422,3 +1422,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-bookingbusinesses?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index c3782fe32ac17..dc8ceaa77388a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -1318,7 +1318,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1403,13 +1403,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1437,7 +1437,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION : location +SERVICELOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1462,7 +1462,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1473,3 +1473,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index 4f9f4587d8d84..f9f50c0f0ca36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -1318,7 +1318,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1403,13 +1403,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1437,7 +1437,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION : location +SERVICELOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1462,7 +1462,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1472,3 +1472,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index 7f7d8cc12c54c..23a53cb66616d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -610,7 +610,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a custom question of the business. +BODYPARAMETER ``: Represents a custom question of the business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -624,7 +624,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -650,3 +650,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customquestions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index c7479b164dbf0..4f93923130d1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -492,7 +492,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -518,3 +518,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customers?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index 72fc5f2571dec..67fbc28808d0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -1116,7 +1116,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a particular service offered by a booking business. +BODYPARAMETER ``: Represents a particular service offered by a booking business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1217,7 +1217,7 @@ CUSTOMQUESTIONS : Contains the set o [IsRequired ]: Indicates whether it's mandatory to answer the custom question. [QuestionId ]: The ID of the custom question. -DEFAULTLOCATION : location +DEFAULTLOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1249,7 +1249,7 @@ The value of this property is available only when reading this bookingService by It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1270,7 +1270,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1305,3 +1305,25 @@ Use the email address specified in the email property of the bookingBusiness ent - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-services?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index 86534f3d27643..3823c74ce6df5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -536,7 +536,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -562,3 +562,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember) - [](https://learn.microsoft.com/graph/api/bookingbusiness-post-staffmembers?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md index a56a95807f820..f454a60f502ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.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. -BODYPARAMETER : bookingCurrency +BODYPARAMETER ``: bookingCurrency [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -397,3 +397,25 @@ For example, the currency symbol for the US dollar and for the Australian dollar ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md index 2b84d46c1e29b..afbc438a985cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md @@ -589,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEvent +BODYPARAMETER ``: virtualEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -758,7 +758,7 @@ Read-only. [StartDateTime ]: dateTimeTimeZone [Status ]: virtualEventStatus -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -777,12 +777,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -948,11 +948,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -962,3 +962,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md index 8be06d82fd1cb..ca982b2a45418 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md @@ -548,7 +548,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -572,14 +572,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -600,7 +600,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -617,3 +617,25 @@ PRESENTERDETAILS : virtualEventPres ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md index cef22e8cbd280..dfd225b7bd7d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md @@ -1528,7 +1528,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. @@ -1537,7 +1537,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1666,24 +1666,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1704,12 +1704,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1720,23 +1720,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1745,3 +1745,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md index bee306d8be043..2b5ef65a9d7ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -747,3 +747,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 0ba0f4e0fd4f9..037cf6304d8e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -723,7 +723,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. @@ -750,7 +750,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. @@ -758,14 +758,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -790,3 +790,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md index 38950a52fba62..7c55eececa999 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md @@ -679,7 +679,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventTownhall +BODYPARAMETER ``: virtualEventTownhall [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -866,7 +866,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -885,12 +885,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1063,11 +1063,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1078,3 +1078,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall) - [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md index e30142fd2d78d..2fb9a3cf4d45d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md @@ -14,7 +14,7 @@ title: New-MgVirtualEventTownhallPresenter ## SYNOPSIS Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## SYNTAX @@ -68,7 +68,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES @@ -569,7 +569,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -593,14 +593,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -621,7 +621,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -639,3 +639,25 @@ PRESENTERDETAILS : virtualEventPres - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter) - [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md index 7577bddd2ab89..b98b2c8992fd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md @@ -1530,7 +1530,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. @@ -1539,7 +1539,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1668,24 +1668,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1706,12 +1706,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1722,23 +1722,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1747,3 +1747,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md index 2ba36904523a9..0e8f6a7db57ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -747,3 +747,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 73f3e16039f38..1f0127ffb7aef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -791,3 +791,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md index c59b70d9fb1f7..8f66c5f722421 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md @@ -679,7 +679,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventWebinar +BODYPARAMETER ``: virtualEventWebinar [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -905,7 +905,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -924,12 +924,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -967,7 +967,7 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -REGISTRATIONCONFIGURATION : virtualEventWebinarRegistrationConfiguration +REGISTRATIONCONFIGURATION ``: virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -1266,11 +1266,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1281,3 +1281,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar) - [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md index 3d6891a70180e..2677130ac52b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md @@ -14,7 +14,7 @@ title: New-MgVirtualEventWebinarPresenter ## SYNOPSIS Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## SYNTAX @@ -68,7 +68,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new virtualEventPresenter object on a virtual event. -Currently, the following types of virtual events are supported: \r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES @@ -569,7 +569,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -593,14 +593,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -621,7 +621,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -639,3 +639,25 @@ PRESENTERDETAILS : virtualEventPres - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter) - [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index aaa8ce32f45fd..54d17d476eb10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -888,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistration +BODYPARAMETER ``: virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1045,7 +1045,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -1053,7 +1053,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1217,3 +1217,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration) - [](https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 0d8f033e4d72c..db128bec78fbf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -535,7 +535,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistrationQuestionBase +BODYPARAMETER ``: virtualEventRegistrationQuestionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -543,7 +543,7 @@ Read-only. [IsRequired ]: Indicates whether an answer to the question is required. The default value is false. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -569,3 +569,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion) - [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md index 31ee712306db1..4870dd20d1b9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md @@ -1529,7 +1529,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. @@ -1538,7 +1538,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1667,24 +1667,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1705,12 +1705,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1721,23 +1721,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1746,3 +1746,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md index 07b2fb435f504..5847a2556746c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -747,3 +747,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index b4fffa8792ba3..b3636958093c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -723,7 +723,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. @@ -750,7 +750,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. @@ -758,14 +758,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -790,3 +790,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index 6c352a96692b6..27bee03871d81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md index 47540972c9e64..fa3bc19fad97f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md index 147a96a7b1338..6b4266c57f1c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index 96bfcdbbd5e40..17d39849e7efa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment) - [](https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md index 6f6d93fe1fdfa..fbf9c531ec7df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index ff4cd1a823202..f09f29f9dd9d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion) - [](https://learn.microsoft.com/graph/api/bookingcustomquestion-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index cf8a7005a41d5..fd9319d3c69c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer) - [](https://learn.microsoft.com/graph/api/bookingcustomer-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index efdd4348a8810..c80a60ecbbc8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice) - [](https://learn.microsoft.com/graph/api/bookingservice-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index 94ac3c408a5eb..49e6a8c3f79fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember) - [](https://learn.microsoft.com/graph/api/bookingstaffmember-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md index 04f7396e8fa0d..ef2384d7f8367 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md index db2075c4b87d1..0b536e1556304 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md index 37f86d386ec61..d6bff4d5c732b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md index f01d7a10aeba6..6fce4bcaf7864 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md index e5ddebf0566fc..5a1f9bff7df93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index e741adc1839b2..7ea1ba84033f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -448,7 +448,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -473,3 +473,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md index 0d4dcfc0448d8..97b439b03b49b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md index 2f82fe8b64325..203170c0aa855 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md @@ -14,7 +14,7 @@ title: Remove-MgVirtualEventTownhallPresenter ## SYNOPSIS Delete a virtualEventPresenter from a virtual event. -Currently the supported virtual event types are:\r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar ## SYNTAX @@ -45,7 +45,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Delete a virtualEventPresenter from a virtual event. -Currently the supported virtual event types are:\r\n- virtualEventTownhall\r\n- virtualEventWebinar +Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES @@ -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter) - [](https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md index cd490472f10a8..c043290b29f3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md index 4a4dd2b82c866..690c6880f1a1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 09694443811e4..d7072c12b61be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -475,3 +475,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md index 45ea248a85b56..7344baaf0b7b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md index 48422991d08a8..b99bae04b4c98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md index 144ce106d60a3..ec1900e741b9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -431,3 +431,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md index 38735ca31ab6f..1428dfbd3ab57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md index 3383823e23b84..7a72757cbcf65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md index a86ffd5cf5061..ddf237a68a299 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 2806b8e08f9dc..50fa54eb6428e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion) - [](https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md index 3040be2e2fd9d..3c86a9a35a3ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -430,3 +430,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md index e2776c33c16ef..91628195063de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -452,3 +452,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index c06d4a3b379c2..c8fea66fd6aad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -448,7 +448,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -473,3 +473,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index 669ba05b301b4..da7cc8bcf312f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -483,11 +483,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. [ExternalEventId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -512,3 +512,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index 86efa95a1681d..71dd0e999f49a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -513,11 +513,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. [CancellationMessage ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -543,3 +543,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment) - [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index 5da101ca29c7f..a1aaa86e75bc8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -510,11 +510,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. [CancellationMessage ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -540,3 +540,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview) - [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md index b0c46d9d5ff45..8606ce71c6bbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -388,3 +388,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index 51b47ba096522..c263b89f29dd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -410,3 +410,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md index 00e33727270a1..ab896d2a541b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md index 1bdc872a635ef..21f3386767ccb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index 35980df68c0fb..2dae8eeda2cdb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -389,3 +389,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index b91fe99318e91..36e69fdddc886 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -1035,7 +1035,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ADDRESS : physicalAddress +ADDRESS ``: physicalAddress [(Any) ]: This indicates any property can be added to this object. [City ]: The city. [CountryOrRegion ]: The country or region. @@ -1130,7 +1130,7 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -BODYPARAMETER : Represents a Microsoft Bookings Business. +BODYPARAMETER ``: Represents a Microsoft Bookings Business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1358,7 +1358,7 @@ Read-only. [WebSiteUrl ]: The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page. -BOOKINGPAGESETTINGS : bookingPageSettings +BOOKINGPAGESETTINGS ``: bookingPageSettings [(Any) ]: This indicates any property can be added to this object. [AccessControl ]: bookingPageAccessControl [BookingPageColorCode ]: Custom color for the booking page. @@ -1496,7 +1496,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1517,7 +1517,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1656,3 +1656,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness) - [](https://learn.microsoft.com/graph/api/bookingbusiness-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index f16eb21edf480..e57f156e977dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -1383,7 +1383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1468,13 +1468,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1502,7 +1502,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION : location +SERVICELOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1527,7 +1527,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1538,3 +1538,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment) - [](https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md index 751b94403c4b6..eda956efab451 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md @@ -1345,7 +1345,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a booked appointment of a service by a customer in a business. +BODYPARAMETER ``: Represents a booked appointment of a service by a customer in a business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1430,13 +1430,13 @@ Default value is false. [StaffMemberIds ]: The ID of each bookingStaffMember who is scheduled in this appointment. [StartDateTime ]: dateTimeTimeZone -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1464,7 +1464,7 @@ The value of this property is available only when reading this bookingAppointmen It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -SERVICELOCATION : location +SERVICELOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1489,7 +1489,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [UniqueId ]: For internal use only. [UniqueIdType ]: locationUniqueIdType -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1499,3 +1499,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index 665a056a33f48..a9d49ad1a6d39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -637,7 +637,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a custom question of the business. +BODYPARAMETER ``: Represents a custom question of the business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -651,7 +651,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -677,3 +677,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion) - [](https://learn.microsoft.com/graph/api/bookingcustomquestion-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index 5fe42f5b341f4..6a98ba3945fd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -491,7 +491,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -517,3 +517,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer) - [](https://learn.microsoft.com/graph/api/bookingcustomer-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 78bc6821795de..64eea970079d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -14,7 +14,7 @@ title: Update-MgBookingBusinessService ## SYNOPSIS Update the properties of a bookingService object in the specified bookingBusiness. -The following are some examples you can customize for a service:\r\n- Price\r\n- Typical length of an appointment\r\n- Reminders\r\n- Any time buffer to set up before or finish up after the service\r\n- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. +The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. ## SYNTAX @@ -83,7 +83,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Update the properties of a bookingService object in the specified bookingBusiness. -The following are some examples you can customize for a service:\r\n- Price\r\n- Typical length of an appointment\r\n- Reminders\r\n- Any time buffer to set up before or finish up after the service\r\n- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. +The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. ## EXAMPLES @@ -1146,7 +1146,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Represents a particular service offered by a booking business. +BODYPARAMETER ``: Represents a particular service offered by a booking business. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1247,7 +1247,7 @@ CUSTOMQUESTIONS : Contains the set o [IsRequired ]: Indicates whether it's mandatory to answer the custom question. [QuestionId ]: The ID of the custom question. -DEFAULTLOCATION : location +DEFAULTLOCATION ``: location [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1279,7 +1279,7 @@ The value of this property is available only when reading this bookingService by It's denoted in ISO 8601 format. [Recipients ]: bookingReminderRecipients -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1300,7 +1300,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -SCHEDULINGPOLICY : This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. +SCHEDULINGPOLICY ``: This type represents the set of policies that dictate how bookings can be created in a Booking Calendar. [(Any) ]: This indicates any property can be added to this object. [AllowStaffSelection ]: True to allow customers to choose a specific person for the booking. [CustomAvailabilities ]: Custom availability of the service in a given time frame. @@ -1335,3 +1335,25 @@ Use the email address specified in the email property of the bookingBusiness ent - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice) - [](https://learn.microsoft.com/graph/api/bookingservice-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index 34b9d8df9cec8..6cdcf33fd0bed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -513,3 +513,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember) - [](https://learn.microsoft.com/graph/api/bookingstaffmember-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md index 92a28a21ab047..ba42e863a071c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md @@ -490,14 +490,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 : bookingCurrency +BODYPARAMETER ``: bookingCurrency [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Symbol ]: The currency symbol. For example, the currency symbol for the US dollar and for the Australian dollar is $. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -522,3 +522,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md index e4133407d670a..0386c21c2aa82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.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 : virtualEvent +BODYPARAMETER ``: virtualEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -921,7 +921,7 @@ Read-only. [StartDateTime ]: dateTimeTimeZone [Status ]: virtualEventStatus -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -940,12 +940,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -960,7 +960,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1132,11 +1132,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1146,3 +1146,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md index 3983df64e1173..0b010f3056936 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.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 : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -599,14 +599,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -627,7 +627,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -644,3 +644,25 @@ PRESENTERDETAILS : virtualEventPres ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md index c4c4344c3f93d..6cb6d0c4dd9e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md @@ -1556,7 +1556,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. @@ -1565,7 +1565,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1694,24 +1694,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1732,12 +1732,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1748,23 +1748,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1773,3 +1773,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md index 1909261b8a439..61c1fbfa4c160 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md @@ -694,7 +694,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. @@ -750,7 +750,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -775,3 +775,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 07cf7bb47ad94..0a5fc6c3a78ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -750,7 +750,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. @@ -777,7 +777,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. @@ -785,14 +785,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -817,3 +817,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md index 65b06cc848e13..0da61f727836d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md @@ -881,7 +881,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventTownhall +BODYPARAMETER ``: virtualEventTownhall [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -1068,7 +1068,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -1087,12 +1087,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1107,7 +1107,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1286,11 +1286,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1301,3 +1301,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall) - [](https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md index 35f70ebf99564..ff4a4471d3dce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md @@ -576,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -600,14 +600,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -628,7 +628,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -645,3 +645,25 @@ PRESENTERDETAILS : virtualEventPres ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md index badd94d000ee6..1704b273de1c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md @@ -1557,7 +1557,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. @@ -1566,7 +1566,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1695,24 +1695,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1733,12 +1733,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1749,23 +1749,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1774,3 +1774,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md index 580ed7a4b2e72..b28d1428c4c3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md @@ -695,7 +695,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. @@ -751,7 +751,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -776,3 +776,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 5ff9c6eb657a2..c1e56cc48ffe5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -752,7 +752,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. @@ -779,7 +779,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. @@ -787,14 +787,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -819,3 +819,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md index 9034262e11274..36061e5c2cfe5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md @@ -882,7 +882,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventWebinar +BODYPARAMETER ``: virtualEventWebinar [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: communicationsIdentitySet [(Any) ]: This indicates any property can be added to this object. @@ -1108,7 +1108,7 @@ For example, if a user changes their display name the API might show the new val 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. [TenantId ]: The user's tenant ID. -CREATEDBY : communicationsIdentitySet +CREATEDBY ``: 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. @@ -1127,12 +1127,12 @@ For example, in the access reviews decisions API, this property might record the [OnPremises ]: identity [Phone ]: identity -DESCRIPTION : itemBody +DESCRIPTION ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1147,7 +1147,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1191,7 +1191,7 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -REGISTRATIONCONFIGURATION : virtualEventWebinarRegistrationConfiguration +REGISTRATIONCONFIGURATION ``: virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -1490,11 +1490,11 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -SETTINGS : virtualEventSettings +SETTINGS ``: virtualEventSettings [(Any) ]: This indicates any property can be added to this object. [IsAttendeeEmailNotificationEnabled ]: Indicates whether virtual event attendees receive email notifications. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. @@ -1505,3 +1505,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar) - [](https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md index b194706e9e77e..7613d95cd9a74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md @@ -14,7 +14,7 @@ title: Update-MgVirtualEventWebinarPresenter ## SYNOPSIS Update the properties of a virtualEventPresenter object. -Currently the supported virtual event types are:\r\n- virtualEventWebinar. +Currently the supported virtual event types are:\r- virtualEventWebinar. ## SYNTAX @@ -69,7 +69,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Update the properties of a virtualEventPresenter object. -Currently the supported virtual event types are:\r\n- virtualEventWebinar. +Currently the supported virtual event types are:\r- virtualEventWebinar. ## EXAMPLES @@ -589,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventPresenter +BODYPARAMETER ``: virtualEventPresenter [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -613,14 +613,14 @@ For example, in the access reviews decisions API, this property might record the [Photo ]: The content stream of the presenter's photo. [TwitterProfileWebUrl ]: The presenter's Twitter profile URL. -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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -641,7 +641,7 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -PRESENTERDETAILS : virtualEventPresenterDetails +PRESENTERDETAILS ``: virtualEventPresenterDetails [(Any) ]: This indicates any property can be added to this object. [Bio ]: itemBody [(Any) ]: This indicates any property can be added to this object. @@ -659,3 +659,25 @@ PRESENTERDETAILS : virtualEventPres - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter) - [](https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md index 3a8fd4ad5a6a0..1734f7b1f6738 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md @@ -835,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistration +BODYPARAMETER ``: virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -992,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -1000,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1163,3 +1163,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md index fecd43447263b..38f5b9fe69ce6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md @@ -835,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistration +BODYPARAMETER ``: virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -992,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -1000,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1163,3 +1163,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md index dce289627039f..2fe5597b96669 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md @@ -835,7 +835,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistration +BODYPARAMETER ``: virtualEventRegistration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -992,7 +992,7 @@ See below for more possible values. [UserId ]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. -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. @@ -1000,7 +1000,7 @@ Optional. Optional. If set, the maximum supported length is 256 characters. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1163,3 +1163,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index abe192671b4d5..e052d3b5ffa5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -603,7 +603,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventWebinarRegistrationConfiguration +BODYPARAMETER ``: virtualEventWebinarRegistrationConfiguration [(Any) ]: This indicates any property can be added to this object. [Capacity ]: Total capacity of the virtual event. [Questions ]: Registration questions. @@ -618,7 +618,7 @@ Read-only. [IsManualApprovalEnabled ]: [IsWaitlistEnabled ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -650,3 +650,25 @@ The default value is false. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index f491743ce1c3b..e3f49a71a812f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -547,7 +547,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : virtualEventRegistrationQuestionBase +BODYPARAMETER ``: virtualEventRegistrationQuestionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -555,7 +555,7 @@ Read-only. [IsRequired ]: Indicates whether an answer to the question is required. The default value is false. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md index b44a2bd960d6b..58c291730034c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md @@ -1557,7 +1557,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. @@ -1566,7 +1566,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 : virtualEventSession +BODYPARAMETER ``: virtualEventSession [(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. @@ -1695,24 +1695,24 @@ See below for more possible values. [StartDateTime ]: dateTimeTimeZone [VideoOnDemandWebUrl ]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. -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. -ENDDATETIME : dateTimeTimeZone +ENDDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -1733,12 +1733,12 @@ INPUTOBJECT : Identity Parameter [VirtualEventTownhallId ]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId ]: The unique identifier of virtualEventWebinar -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. @@ -1749,23 +1749,23 @@ 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 -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. -STARTDATETIME : dateTimeTimeZone +STARTDATETIME ``: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. [DateTime ]: A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). [TimeZone ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -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. @@ -1774,3 +1774,25 @@ WATERMARKPROTECTION : watermarkProtect ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md index aa787c7d08a9b..9defc3ddb6121 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md @@ -694,7 +694,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. @@ -750,7 +750,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -775,3 +775,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index ba746c483b0f9..b892885bbe16d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -750,7 +750,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. @@ -777,7 +777,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. @@ -785,14 +785,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 [AttendanceRecordId ]: The unique identifier of attendanceRecord [BookingAppointmentId ]: The unique identifier of bookingAppointment [BookingBusinessId ]: The unique identifier of bookingBusiness @@ -817,3 +817,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord) + + + + + + + + + + + + + + + + + + + + + + From b078e047f766a024584ff2ddbf93e2cb12b2e165 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:14 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Microsoft.Graph.Bookings/Get-MgBookingBusiness.md | 8 ++++++++ .../Get-MgBookingBusinessAppointment.md | 8 ++++++++ .../Get-MgBookingBusinessAppointmentCount.md | 8 ++++++++ .../Get-MgBookingBusinessCalendarViewCount.md | 8 ++++++++ .../Get-MgBookingBusinessCount.md | 8 ++++++++ .../Get-MgBookingBusinessCustomQuestion.md | 8 ++++++++ .../Get-MgBookingBusinessCustomQuestionCount.md | 8 ++++++++ .../Get-MgBookingBusinessCustomer.md | 8 ++++++++ .../Get-MgBookingBusinessCustomerCount.md | 8 ++++++++ .../Get-MgBookingBusinessService.md | 8 ++++++++ .../Get-MgBookingBusinessServiceCount.md | 8 ++++++++ .../Get-MgBookingBusinessStaffAvailability.md | 8 ++++++++ .../Get-MgBookingBusinessStaffMember.md | 8 ++++++++ .../Get-MgBookingBusinessStaffMemberCount.md | 8 ++++++++ .../Microsoft.Graph.Bookings/Get-MgBookingCurrency.md | 8 ++++++++ .../Get-MgBookingCurrencyCount.md | 8 ++++++++ .../Get-MgVirtualEventTownhall.md | 8 ++++++++ .../Get-MgVirtualEventTownhallByUserIdAndRole.md | 8 ++++++++ .../Get-MgVirtualEventTownhallByUserRole.md | 8 ++++++++ .../Get-MgVirtualEventTownhallPresenter.md | 8 ++++++++ .../Get-MgVirtualEventTownhallSession.md | 8 ++++++++ .../Get-MgVirtualEventTownhallSessionCount.md | 8 ++++++++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md | 8 ++++++++ .../Get-MgVirtualEventWebinarByUserIdAndRole.md | 8 ++++++++ .../Get-MgVirtualEventWebinarByUserRole.md | 8 ++++++++ .../Get-MgVirtualEventWebinarRegistration.md | 8 ++++++++ .../Get-MgVirtualEventWebinarSession.md | 8 ++++++++ .../Get-MgVirtualEventWebinarSessionCount.md | 8 ++++++++ .../New-MgBookingBusinessAppointment.md | 8 ++++++++ .../New-MgBookingBusinessCalendarView.md | 8 ++++++++ .../New-MgBookingBusinessCustomQuestion.md | 8 ++++++++ .../New-MgBookingBusinessCustomer.md | 8 ++++++++ .../New-MgBookingBusinessService.md | 8 ++++++++ .../New-MgBookingBusinessStaffMember.md | 8 ++++++++ .../New-MgVirtualEventWebinarRegistration.md | 8 ++++++++ .../Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md | 8 ++++++++ .../Remove-MgBookingBusinessAppointment.md | 8 ++++++++ .../Remove-MgBookingBusinessCustomQuestion.md | 8 ++++++++ .../Remove-MgBookingBusinessCustomer.md | 8 ++++++++ .../Remove-MgBookingBusinessService.md | 8 ++++++++ .../Remove-MgBookingBusinessStaffMember.md | 8 ++++++++ .../Stop-MgBookingBusinessAppointment.md | 8 ++++++++ .../Stop-MgVirtualEventWebinarRegistration.md | 8 ++++++++ .../Unpublish-MgBookingBusiness.md | 8 ++++++++ .../Microsoft.Graph.Bookings/Update-MgBookingBusiness.md | 8 ++++++++ .../Update-MgBookingBusinessAppointment.md | 8 ++++++++ .../Update-MgBookingBusinessCustomQuestion.md | 8 ++++++++ .../Update-MgBookingBusinessCustomer.md | 8 ++++++++ .../Update-MgBookingBusinessService.md | 8 ++++++++ .../Update-MgBookingBusinessStaffMember.md | 8 ++++++++ 50 files changed, 400 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index 1201f99ef5082..b48ae19fd494b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md @@ -55,6 +55,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingBusiness object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index 596f5b03bfae1..c8ee125bf249d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -58,6 +58,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The start and end properties are always returned in UTC. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 18800e6db30fb..212822c90f073 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index 7085277a90468..081c435fd4229 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index a384a819c276f..dc020047a9cd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index bbae79953f870..a382e481e34ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a bookingCustomQuestion object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index 838b9aade22d3..227a12146ace4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index 78b74858337f9..7512a110e019e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingCustomer object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index 386724e5810d6..79a9d71e759c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index 86593bb5cebfd..d531f903e06ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingService object in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index aeb02a0077c04..1a92dd4839154 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index c4bd838a86ac2..6c1042f731372 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Get the availability information of staff members of a Microsoft Bookings calendar. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Not supported | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index a4dd88ae2eb9c..a13a6aaa5aa36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index 20a3a8ca70f4c..1b274a9638854 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index 1726034bbd718..943a742a706ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index 8336f7c8ffa5d..7b8e5779c436c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.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) | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index 63b23c01e525c..fd2d203e5ad42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index b90e5f044d10c..0288d9ff146d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Get a list of virtualEventTownhall objects where the specified user is either the organizer or a coorganizer. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index c744d75ee5d51..c1db9615d8293 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Get a list of virtualEventTownhall objects where the signed-in user is either the organizer or a coorganizer. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index fb7805db6f8ee..d85c14c846ea9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -58,6 +58,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventPresenter object. Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index ae61df278f84b..3ac1a36be3779 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The sessions for the virtual event. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index 2caf05dd0be51..545cde32a395e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.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) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index b00e81afeef3f..5c62a2fffd53e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index 0455a0e89fdac..df5700935ef82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 114f3b4f529e3..88e5bdc4da32d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index 877de5b664717..8497a270ca4e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, VirtualEventRegistration-Anon.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 4533f9a1dc371..8b5b9b4622cc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -58,6 +58,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventSession object. Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index 4043504208147..a8c002b08eb5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.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) | VirtualEvent.Read, VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEvent.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index dc8ceaa77388a..3413974c69d9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -88,6 +88,14 @@ This cmdlet has the following aliases, Create a new bookingAppointment for the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index f9f50c0f0ca36..3597611eac301 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -88,6 +88,14 @@ This cmdlet has the following aliases, Create new navigation property to calendarView for solutions +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index 23a53cb66616d..d9a40b1bbcbd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Create a new bookingCustomQuestion object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index 4f93923130d1c..020806339bb60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -62,6 +62,14 @@ This cmdlet has the following aliases, Create a new bookingCustomer object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index 67fbc28808d0b..3640c89570d34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -82,6 +82,14 @@ This cmdlet has the following aliases, Create a new bookingService for the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index 3823c74ce6df5..6827019ee675b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -63,6 +63,14 @@ This cmdlet has the following aliases, Create a new bookingStaffMember in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index 54d17d476eb10..2f42f7a75f23a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -80,6 +80,14 @@ This cmdlet has the following aliases, Create a registration record for a registrant of a webinar. This method registers the person for the webinar. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEventRegistration-Anon.ReadWrite.Chat, VirtualEventRegistration-Anon.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index 27bee03871d81..dbf6547bd3739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Make the scheduling page of a business available to external customers. Set the isPublished property to true, and the publicUrl property to the URL of the scheduling page. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index 17d39849e7efa..069d1de40043d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete a bookingAppointment in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index f09f29f9dd9d5..3f05c6f1e35cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete a bookingCustomQuestion object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index fd9319d3c69c3..8c0edd8d841b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete the specified bookingCustomer object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index c80a60ecbbc8e..1d72c735a93e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete a bookingService object in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index 49e6a8c3f79fb..33c2df6cad0d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete a bookingStaffMember in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index 71dd0e999f49a..e64644bff195e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index c263b89f29dd6..932b873c7b795 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | VirtualEvent.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | VirtualEventRegistration-Anon.ReadWrite.Chat, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index 2dae8eeda2cdb..fd38dc298924a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Make the scheduling page of this business not available to external customers. Set the isPublished property to false, and the publicUrl property to null. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index 36e69fdddc886..f2edcdb582570 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -87,6 +87,14 @@ This cmdlet has the following aliases, Update the properties of a bookingBusiness object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index e57f156e977dc..e686aea7a4bb9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -88,6 +88,14 @@ This cmdlet has the following aliases, Update the properties of a bookingAppointment object in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index a9d49ad1a6d39..d269c24ddbfb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Update the properties of a bookingCustomQuestion object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index 6a98ba3945fd9..afc06d4662319 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -64,6 +64,14 @@ This cmdlet has the following aliases, Update the properties of a bookingCustomer object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 64eea970079d9..36e43bb0707d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -85,6 +85,14 @@ This cmdlet has the following aliases, Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index 6cdcf33fd0bed..acf54a17d4bbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md @@ -64,6 +64,14 @@ This cmdlet has the following aliases, Update the properties of a bookingStaffMember in the specified bookingBusiness. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Bookings.ReadWrite.All, Bookings.Manage.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Bookings.ReadWrite.All, Bookings.Manage.All, | + ## EXAMPLES ### EXAMPLE 1 From 6fb7a2bc61273b47e921d7bf58c4fef500c82eb8 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:51 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Microsoft.Graph.Bookings/Get-MgBookingBusiness.md | 3 +++ .../Get-MgBookingBusinessAppointment.md | 3 +++ .../Get-MgBookingBusinessAppointmentCount.md | 3 +++ .../Get-MgBookingBusinessCalendarView.md | 3 +++ .../Get-MgBookingBusinessCalendarViewCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md | 3 +++ .../Get-MgBookingBusinessCustomQuestion.md | 3 +++ .../Get-MgBookingBusinessCustomQuestionCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md | 3 +++ .../Get-MgBookingBusinessCustomerCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md | 3 +++ .../Get-MgBookingBusinessServiceCount.md | 3 +++ .../Get-MgBookingBusinessStaffAvailability.md | 3 +++ .../Get-MgBookingBusinessStaffMember.md | 3 +++ .../Get-MgBookingBusinessStaffMemberCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgBookingCurrency.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEvent.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md | 3 +++ .../Get-MgVirtualEventPresenterCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md | 3 +++ .../Get-MgVirtualEventSessionAttendanceReport.md | 3 +++ ...et-MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 3 +++ ...VirtualEventSessionAttendanceReportAttendanceRecordCount.md | 3 +++ .../Get-MgVirtualEventSessionAttendanceReportCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md | 3 +++ .../Get-MgVirtualEventTownhallByUserIdAndRole.md | 3 +++ .../Get-MgVirtualEventTownhallByUserRole.md | 3 +++ .../Get-MgVirtualEventTownhallCount.md | 3 +++ .../Get-MgVirtualEventTownhallPresenter.md | 3 +++ .../Get-MgVirtualEventTownhallPresenterCount.md | 3 +++ .../Get-MgVirtualEventTownhallSession.md | 3 +++ .../Get-MgVirtualEventTownhallSessionAttendanceReport.md | 3 +++ ...tualEventTownhallSessionAttendanceReportAttendanceRecord.md | 3 +++ ...ventTownhallSessionAttendanceReportAttendanceRecordCount.md | 3 +++ .../Get-MgVirtualEventTownhallSessionAttendanceReportCount.md | 3 +++ .../Get-MgVirtualEventTownhallSessionCount.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md | 3 +++ .../Get-MgVirtualEventWebinarByUserIdAndRole.md | 3 +++ .../Get-MgVirtualEventWebinarByUserRole.md | 3 +++ .../Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md | 3 +++ .../Get-MgVirtualEventWebinarPresenter.md | 3 +++ .../Get-MgVirtualEventWebinarPresenterCount.md | 3 +++ .../Get-MgVirtualEventWebinarRegistration.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationByEmail.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationByUserId.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationConfiguration.md | 3 +++ ...t-MgVirtualEventWebinarRegistrationConfigurationQuestion.md | 3 +++ ...irtualEventWebinarRegistrationConfigurationQuestionCount.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationCount.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationSession.md | 3 +++ .../Get-MgVirtualEventWebinarRegistrationSessionCount.md | 3 +++ .../Get-MgVirtualEventWebinarSession.md | 3 +++ .../Get-MgVirtualEventWebinarSessionAttendanceReport.md | 3 +++ ...rtualEventWebinarSessionAttendanceReportAttendanceRecord.md | 3 +++ ...EventWebinarSessionAttendanceReportAttendanceRecordCount.md | 3 +++ .../Get-MgVirtualEventWebinarSessionAttendanceReportCount.md | 3 +++ .../Get-MgVirtualEventWebinarSessionCount.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgBookingBusiness.md | 3 +++ .../New-MgBookingBusinessAppointment.md | 3 +++ .../New-MgBookingBusinessCalendarView.md | 3 +++ .../New-MgBookingBusinessCustomQuestion.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgBookingBusinessService.md | 3 +++ .../New-MgBookingBusinessStaffMember.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgBookingCurrency.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgVirtualEvent.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgVirtualEventSession.md | 3 +++ .../New-MgVirtualEventSessionAttendanceReport.md | 3 +++ ...ew-MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md | 3 +++ .../New-MgVirtualEventTownhallPresenter.md | 3 +++ .../New-MgVirtualEventTownhallSession.md | 3 +++ .../New-MgVirtualEventTownhallSessionAttendanceReport.md | 3 +++ ...tualEventTownhallSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md | 3 +++ .../New-MgVirtualEventWebinarPresenter.md | 3 +++ .../New-MgVirtualEventWebinarRegistration.md | 3 +++ ...w-MgVirtualEventWebinarRegistrationConfigurationQuestion.md | 3 +++ .../New-MgVirtualEventWebinarSession.md | 3 +++ .../New-MgVirtualEventWebinarSessionAttendanceReport.md | 3 +++ ...rtualEventWebinarSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md | 3 +++ .../Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md | 3 +++ .../Remove-MgBookingBusinessAppointment.md | 3 +++ .../Remove-MgBookingBusinessCalendarView.md | 3 +++ .../Remove-MgBookingBusinessCustomQuestion.md | 3 +++ .../Remove-MgBookingBusinessCustomer.md | 3 +++ .../Remove-MgBookingBusinessService.md | 3 +++ .../Remove-MgBookingBusinessStaffMember.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md | 3 +++ .../Remove-MgVirtualEventSessionAttendanceReport.md | 3 +++ ...ve-MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md | 3 +++ .../Remove-MgVirtualEventTownhallPresenter.md | 3 +++ .../Remove-MgVirtualEventTownhallSession.md | 3 +++ .../Remove-MgVirtualEventTownhallSessionAttendanceReport.md | 3 +++ ...tualEventTownhallSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md | 3 +++ .../Remove-MgVirtualEventWebinarPresenter.md | 3 +++ .../Remove-MgVirtualEventWebinarRegistration.md | 3 +++ .../Remove-MgVirtualEventWebinarRegistrationByEmail.md | 3 +++ .../Remove-MgVirtualEventWebinarRegistrationByUserId.md | 3 +++ .../Remove-MgVirtualEventWebinarRegistrationConfiguration.md | 3 +++ ...e-MgVirtualEventWebinarRegistrationConfigurationQuestion.md | 3 +++ .../Remove-MgVirtualEventWebinarSession.md | 3 +++ .../Remove-MgVirtualEventWebinarSessionAttendanceReport.md | 3 +++ ...rtualEventWebinarSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Set-MgVirtualEventExternalEventInformation.md | 3 +++ .../Stop-MgBookingBusinessAppointment.md | 3 +++ .../Stop-MgBookingBusinessCalendarView.md | 3 +++ .../Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md | 3 +++ .../Stop-MgVirtualEventWebinarRegistration.md | 3 +++ .../Stop-MgVirtualEventWebinarRegistrationEmail.md | 3 +++ .../Stop-MgVirtualEventWebinarRegistrationUserId.md | 3 +++ .../Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgBookingBusiness.md | 3 +++ .../Update-MgBookingBusinessAppointment.md | 3 +++ .../Update-MgBookingBusinessCalendarView.md | 3 +++ .../Update-MgBookingBusinessCustomQuestion.md | 3 +++ .../Update-MgBookingBusinessCustomer.md | 3 +++ .../Update-MgBookingBusinessService.md | 3 +++ .../Update-MgBookingBusinessStaffMember.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgBookingCurrency.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgVirtualEvent.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md | 3 +++ .../Update-MgVirtualEventSessionAttendanceReport.md | 3 +++ ...te-MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md | 3 +++ .../Update-MgVirtualEventTownhallPresenter.md | 3 +++ .../Update-MgVirtualEventTownhallSession.md | 3 +++ .../Update-MgVirtualEventTownhallSessionAttendanceReport.md | 3 +++ ...tualEventTownhallSessionAttendanceReportAttendanceRecord.md | 3 +++ .../Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md | 3 +++ .../Update-MgVirtualEventWebinarPresenter.md | 3 +++ .../Update-MgVirtualEventWebinarRegistration.md | 3 +++ .../Update-MgVirtualEventWebinarRegistrationByEmail.md | 3 +++ .../Update-MgVirtualEventWebinarRegistrationByUserId.md | 3 +++ .../Update-MgVirtualEventWebinarRegistrationConfiguration.md | 3 +++ ...e-MgVirtualEventWebinarRegistrationConfigurationQuestion.md | 3 +++ .../Update-MgVirtualEventWebinarSession.md | 3 +++ .../Update-MgVirtualEventWebinarSessionAttendanceReport.md | 3 +++ ...rtualEventWebinarSessionAttendanceReportAttendanceRecord.md | 3 +++ 151 files changed, 453 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index b48ae19fd494b..8e4ed3992a4c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusiness Get the properties and relationships of a bookingBusiness object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index c8ee125bf249d..6e1fd9c01d704 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -16,6 +16,9 @@ title: Get-MgBookingBusinessAppointment Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The start and end properties are always returned in UTC. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 212822c90f073..366b65679f797 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessAppointmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessAppointmentCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessAppointmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md index bca640092fbd1..ae5bd949bd292 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md @@ -17,6 +17,9 @@ The set of appointments of this business in a specified date range. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index 081c435fd4229..766830ac9d5c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCalendarViewCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCalendarViewCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCalendarViewCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index dc020047a9cd6..060f1c6463017 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index a382e481e34ff..e638e1d780d55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCustomQuestion Read the properties and relationships of a bookingCustomQuestion object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index 227a12146ace4..ef5c2118ee608 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCustomQuestionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomQuestionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomQuestionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index 7512a110e019e..64d07735492b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCustomer Get the properties and relationships of a bookingCustomer object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index 79a9d71e759c7..b39b53ccdc32e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessCustomerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessCustomerCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessCustomerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index d531f903e06ba..7f10b170ccabb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessService Get the properties and relationships of a bookingService object in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessService?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index 1a92dd4839154..42ab699be9d4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessServiceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessServiceCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessServiceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index 6c1042f731372..2480bb950de4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessStaffAvailability Get the availability information of staff members of a Microsoft Bookings calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffAvailability](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffAvailability?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index a13a6aaa5aa36..f41ca524a850f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessStaffMember Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index 1b274a9638854..b58a8b20e18fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingBusinessStaffMemberCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingBusinessStaffMemberCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingBusinessStaffMemberCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index 943a742a706ef..5c76b072e54c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -16,6 +16,9 @@ title: Get-MgBookingCurrency Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingCurrency?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index 7b8e5779c436c..5881792bd7383 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md @@ -15,6 +15,9 @@ title: Get-MgBookingCurrencyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaBookingCurrencyCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaBookingCurrencyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md index 9a199a234212a..ca135b2fc76b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEvent Get events from solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md index c3074d766b840..8942aa229b236 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md index 70a8e648239e1..af4d28188d325 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventPresenter The virtual event presenters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventPresenter?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md index e4c10feebbc49..8161ca2523659 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventPresenterCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventPresenterCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md index 74ea13cc00e17..e6d5900fc96e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventSession The sessions for the virtual event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md index af9259ec10576..fe3221e728ff6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventSessionAttendanceReport The attendance reports of an online meeting. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index a509b0cd198fe..ca12b1f6f70cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md index 8f5082e04e2e6..47ccf88e6f0a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md index d75fea74f73d9..da47f66e95635 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventSessionAttendanceReportCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionAttendanceReportCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md index e4739b1af4cdf..559ae3e1537ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index fd2d203e5ad42..5244b4e0ae893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventTownhall Read the properties and relationships of a virtualEventTownhall object. All roles can get the details of a townhall event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhall?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index 0288d9ff146d4..4e372c355f2b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallByUserIdAndRole Get a list of virtualEventTownhall objects where the specified user is either the organizer or a coorganizer. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallByUserIdAndRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallByUserIdAndRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index c1db9615d8293..d9ca4791460fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallByUserRole Get a list of virtualEventTownhall objects where the signed-in user is either the organizer or a coorganizer. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallByUserRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallByUserRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md index 57553a3dc1425..d291bda380ac5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index d85c14c846ea9..544e434f9b03d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventTownhallPresenter Read the properties and relationships of a virtualEventPresenter object. Currently the supported virtual event types are: \r- virtualEventTownhall\r- virtualEventWebinar +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md index b55ae35373e89..055d7af171101 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallPresenterCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallPresenterCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index 3ac1a36be3779..9c674237cc711 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallSession The sessions for the virtual event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md index 53c86f0ce4e03..497463da0b1c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReport Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 62721c6805739..6e378896210c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md index e68d2cbd176ee..e1df130ac3a2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md index 94ea6b233d378..d11b3f63304c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallSessionAttendanceReportCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index 545cde32a395e..fad1824620e1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventTownhallSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventTownhallSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventTownhallSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index 5c62a2fffd53e..681b032bfb1c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventWebinar Read the properties and relationships of a virtualEventWebinar object. All roles can get the details of a webinar event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinar?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index df5700935ef82..e54d55f0bbb24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarByUserIdAndRole Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarByUserIdAndRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarByUserIdAndRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 88e5bdc4da32d..835125daabf0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarByUserRole Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarByUserRole](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarByUserRole?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md index fe19f2d21ad91..27d388c7fd6da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md index e96d6ac357594..ba92c802d93a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarPresenter The virtual event presenters. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md index 4800c29a438f9..01d7e8184e3fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarPresenterCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarPresenterCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarPresenterCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index 8497a270ca4e4..a920146ffa846 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistration Get the properties and relationships of a virtualEventRegistration object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md index e907cec16c861..918c1fa1e3c07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationByEmail Get the properties and relationships of a virtualEventRegistration object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md index 1b3e51e68025c..897e07a0fdf34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationByUserId Get the properties and relationships of a virtualEventRegistration object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md index 33e2bf2e94453..57f831d36221f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationConfiguration Read the properties and relationships of a virtualEventWebinarRegistrationConfiguration object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 1deca32b36ac0..de440353b3dd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestion Registration questions. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md index 8420b398a43e9..134f711b0b219 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationConfigurationQuestionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md index b36647d99173f..8344ec1b472d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md index c0b884228e89f..6f122e1b37759 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationSession Sessions for a registration. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md index 9834f8cf8e964..42234bd3e02ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarRegistrationSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarRegistrationSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarRegistrationSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 8b5b9b4622cc2..7cd3d795fce2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventWebinarSession Read the properties and relationships of a virtualEventSession object. Currently, the following virtual event types are supported: \r- virtualEventTownhall\r- virtualEventWebinar +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md index 6c5055f1e1cd2..0394c79bee5f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReport Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 44e036e10fdc7..dad036659b9bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -16,6 +16,9 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord List of attendance records of an attendance report. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md index 9fe883e65e44e..aedb447bd0db4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md index 0f403482bf2c7..4d6842473cbee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarSessionAttendanceReportCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index a8c002b08eb5b..8f13c8ee00892 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgVirtualEventWebinarSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaVirtualEventWebinarSessionCount](/powershell/module/Microsoft.Graph.Beta.Bookings/Get-MgBetaVirtualEventWebinarSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md index e5d27e8a85d21..ebc7d9d25e183 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md @@ -17,6 +17,9 @@ Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index 3413974c69d9c..39b687c22c8f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessAppointment Create a new bookingAppointment for the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index 3597611eac301..f0f368590e5bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessCalendarView Create new navigation property to calendarView for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index d9a40b1bbcbd7..1d228ff289af7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessCustomQuestion Create a new bookingCustomQuestion object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index 020806339bb60..6ee4442aeb1ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessCustomer Create a new bookingCustomer object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index 3640c89570d34..2f9bc725c537e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessService Create a new bookingService for the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessService?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index 6827019ee675b..bff250aa5d910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -15,6 +15,9 @@ title: New-MgBookingBusinessStaffMember Create a new bookingStaffMember in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md index f454a60f502ae..371b7cdac5616 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md @@ -15,6 +15,9 @@ title: New-MgBookingCurrency Create new navigation property to bookingCurrencies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaBookingCurrency?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md index afbc438a985cb..2fe28de5413b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: New-MgVirtualEvent Create new navigation property to events for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md index ca982b2a45418..4affd0474e5d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventPresenter Create new navigation property to presenters for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventPresenter?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md index dfd225b7bd7d3..01c9069e52133 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventSession Create new navigation property to sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md index 2b5ef65a9d7ac..905f91016102a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventSessionAttendanceReport Create new navigation property to attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 037cf6304d8e9..93261a8c5a4b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md index 7c55eececa999..976cf58390f25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventTownhall Create a new virtualEventTownhall object in draft mode. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhall?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md index 2fb9a3cf4d45d..5a2f9590bb632 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md @@ -16,6 +16,9 @@ title: New-MgVirtualEventTownhallPresenter Create a new virtualEventPresenter object on a virtual event. Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md index b98b2c8992fd4..4595dc854e122 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventTownhallSession Create new navigation property to sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md index 0e8f6a7db57ba..30ddbee465486 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventTownhallSessionAttendanceReport Create new navigation property to attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 1f0127ffb7aef..3e6f8e2e255a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md index 8f66c5f722421..ca17e22c71563 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventWebinar Create a new virtualEventWebinar object in draft mode. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinar?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md index 2677130ac52b6..1948f3af8e7cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md @@ -16,6 +16,9 @@ title: New-MgVirtualEventWebinarPresenter Create a new virtualEventPresenter object on a virtual event. Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index 2f42f7a75f23a..391e30865c172 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -16,6 +16,9 @@ title: New-MgVirtualEventWebinarRegistration Create a registration record for a registrant of a webinar. This method registers the person for the webinar. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index db128bec78fbf..40d48adf76dbb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -16,6 +16,9 @@ title: New-MgVirtualEventWebinarRegistrationConfigurationQuestion Create a registration question for a webinar. You can create either a predefined registration question or a custom registration question. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md index 4870dd20d1b9e..2d74bb79b5ecd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventWebinarSession Create new navigation property to sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md index 5847a2556746c..0f04ba383475d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventWebinarSessionAttendanceReport Create new navigation property to attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index b3636958093c2..f0e0e74d29388 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Create new navigation property to attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index dbf6547bd3739..18be0ffb4f37a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md @@ -16,6 +16,9 @@ title: Publish-MgBookingBusiness Make the scheduling page of a business available to external customers. Set the isPublished property to true, and the publicUrl property to the URL of the scheduling page. +> [!NOTE] +> To view the beta release of this cmdlet, view [Publish-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Publish-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### Publish (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md index fa3bc19fad97f..4a2f920c78b64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: Publish-MgVirtualEvent Invoke action publish +> [!NOTE] +> To view the beta release of this cmdlet, view [Publish-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Publish-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### Publish (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md index 6b4266c57f1c7..d43e6ea6f333b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusiness Delete a bookingBusiness object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index 069d1de40043d..abbbc5f89179b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessAppointment Delete a bookingAppointment in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md index fbf9c531ec7df..23199dbf5f783 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessCalendarView Delete navigation property calendarView for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index 3f05c6f1e35cb..d492e39b4c750 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessCustomQuestion Delete a bookingCustomQuestion object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index 8c0edd8d841b4..d2342da9d2d1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessCustomer Delete the specified bookingCustomer object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index 1d72c735a93e8..97f200e19ed4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessService Delete a bookingService object in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessService?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index 33c2df6cad0d1..f5b74f1f0c6a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md @@ -15,6 +15,9 @@ title: Remove-MgBookingBusinessStaffMember Delete a bookingStaffMember in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md index ef2384d7f8367..0e135fc99258d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md @@ -15,6 +15,9 @@ title: Remove-MgBookingCurrency Delete navigation property bookingCurrencies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaBookingCurrency?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md index 0b536e1556304..4d1e19339cf81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEvent Delete navigation property events for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md index d6bff4d5c732b..adb72a9035610 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventPresenter Delete navigation property presenters for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventPresenter?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md index 6fce4bcaf7864..4919c07f47161 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventSession Delete navigation property sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md index 5a1f9bff7df93..04a588309d98e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventSessionAttendanceReport Delete navigation property attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 7ea1ba84033f7..25086872f9907 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md index 97b439b03b49b..a6668db7a9e83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventTownhall Delete navigation property townhalls for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhall?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md index 203170c0aa855..3b37b3932eaae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md @@ -16,6 +16,9 @@ title: Remove-MgVirtualEventTownhallPresenter Delete a virtualEventPresenter from a virtual event. Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md index c043290b29f3c..8d48773a187e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventTownhallSession Delete navigation property sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md index 690c6880f1a1a..2e047dcb7ae82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventTownhallSessionAttendanceReport Delete navigation property attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index d7072c12b61be..73158a41bbbf8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md index 7344baaf0b7b8..9787d5401b939 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinar Delete navigation property webinars for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinar?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md index b99bae04b4c98..5657736e65040 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarPresenter Delete navigation property presenters for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md index ec1900e741b9d..959d87b3de8f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarRegistration Delete navigation property registrations for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md index 1428dfbd3ab57..f5c8209dbf6d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarRegistrationByEmail Delete navigation property registrations for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md index 7a72757cbcf65..0c958d09c6301 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarRegistrationByUserId Delete navigation property registrations for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md index ddf237a68a299..b4d7c127cc2e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarRegistrationConfiguration Delete navigation property registrationConfiguration for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 50fa54eb6428e..8490294839c12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -16,6 +16,9 @@ title: Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion Delete a registration question from a webinar. The question can either be a predefined registration question or a custom registration question. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md index 3c86a9a35a3ca..a79d6539d5672 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarSession Delete navigation property sessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md index 91628195063de..9565337ddc12d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarSessionAttendanceReport Delete navigation property attendanceReports for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index c8fea66fd6aad..d87b0364e6007 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Delete navigation property attendanceRecords for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index da7cc8bcf312f..b3e21b5e5d9c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -15,6 +15,9 @@ title: Set-MgVirtualEventExternalEventInformation Invoke action setExternalEventInformation +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaVirtualEventExternalEventInformation](/powershell/module/Microsoft.Graph.Beta.Bookings/Set-MgBetaVirtualEventExternalEventInformation?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index e64644bff195e..67a96b20a7150 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -15,6 +15,9 @@ title: Stop-MgBookingBusinessAppointment Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) + ## SYNTAX ### CancelExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index a1aaa86e75bc8..8de57e28bf23e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -15,6 +15,9 @@ title: Stop-MgBookingBusinessCalendarView Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) + ## SYNTAX ### CancelExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md index 8606ce71c6bbd..cf06530a3d362 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: Stop-MgVirtualEvent Invoke action cancel +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### Cancel (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index 932b873c7b795..d53e22400b3a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md @@ -15,6 +15,9 @@ title: Stop-MgVirtualEventWebinarRegistration Cancel a registrant's registration record for a webinar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) + ## SYNTAX ### Cancel (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md index ab896d2a541b3..9820d26f46c66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md @@ -15,6 +15,9 @@ title: Stop-MgVirtualEventWebinarRegistrationEmail Cancel a registrant's registration record for a webinar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistrationEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistrationEmail?view=graph-powershell-beta) + ## SYNTAX ### Cancel (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md index 21f3386767ccb..ad94cbf9697df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md @@ -15,6 +15,9 @@ title: Stop-MgVirtualEventWebinarRegistrationUserId Cancel a registrant's registration record for a webinar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaVirtualEventWebinarRegistrationUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Stop-MgBetaVirtualEventWebinarRegistrationUserId?view=graph-powershell-beta) + ## SYNTAX ### Cancel (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index fd38dc298924a..7b575b29f8e94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md @@ -16,6 +16,9 @@ title: Unpublish-MgBookingBusiness Make the scheduling page of this business not available to external customers. Set the isPublished property to false, and the publicUrl property to null. +> [!NOTE] +> To view the beta release of this cmdlet, view [Unpublish-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Unpublish-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### Unpublish (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index f2edcdb582570..ddb90ec1025ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusiness Update the properties of a bookingBusiness object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusiness](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusiness?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index e686aea7a4bb9..d04486e712a29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusinessAppointment Update the properties of a bookingAppointment object in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessAppointment](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessAppointment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md index eda956efab451..58737790031e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusinessCalendarView Update the navigation property calendarView in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCalendarView](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCalendarView?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index d269c24ddbfb4..85125d8a4e000 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusinessCustomQuestion Update the properties of a bookingCustomQuestion object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCustomQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCustomQuestion?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index afc06d4662319..4e450913bd399 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusinessCustomer Update the properties of a bookingCustomer object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessCustomer](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessCustomer?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 36e43bb0707d2..4a670856ee8b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -16,6 +16,9 @@ title: Update-MgBookingBusinessService Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:\r- Price\r- Typical length of an appointment\r- Reminders\r- Any time buffer to set up before or finish up after the service\r- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessService](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessService?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index acf54a17d4bbc..b726e4221c692 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md @@ -15,6 +15,9 @@ title: Update-MgBookingBusinessStaffMember Update the properties of a bookingStaffMember in the specified bookingBusiness. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingBusinessStaffMember](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingBusinessStaffMember?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md index ba42e863a071c..bb9c003fed60f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md @@ -15,6 +15,9 @@ title: Update-MgBookingCurrency Update the navigation property bookingCurrencies in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaBookingCurrency](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaBookingCurrency?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md index 0386c21c2aa82..a4c82fd8a43f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEvent Update the navigation property events in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEvent](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md index 0b010f3056936..dede9d26dda27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventPresenter Update the navigation property presenters in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventPresenter?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md index 6cb6d0c4dd9e9..0d760fad5129e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventSession Update the navigation property sessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md index 61c1fbfa4c160..d3c0c78163084 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventSessionAttendanceReport Update the navigation property attendanceReports in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 0a5fc6c3a78ec..e645efc42b0c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md index 0da61f727836d..4861d658c788f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md @@ -16,6 +16,9 @@ title: Update-MgVirtualEventTownhall Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhall](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhall?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md index ff4a4471d3dce..e9a9c9af1da5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventTownhallPresenter Update the navigation property presenters in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallPresenter?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md index 1704b273de1c8..265402f33186e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventTownhallSession Update the navigation property sessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md index b28d1428c4c3d..981088d890f0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventTownhallSessionAttendanceReport Update the navigation property attendanceReports in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index c1e56cc48ffe5..60717a8e475bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md index 36061e5c2cfe5..048717aeb402c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md @@ -16,6 +16,9 @@ title: Update-MgVirtualEventWebinar Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinar](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinar?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md index 7613d95cd9a74..fd9093d6acbdb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md @@ -16,6 +16,9 @@ title: Update-MgVirtualEventWebinarPresenter Update the properties of a virtualEventPresenter object. Currently the supported virtual event types are:\r- virtualEventWebinar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarPresenter](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarPresenter?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md index 1734f7b1f6738..8be2ea4c806d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarRegistration Update the navigation property registrations in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistration](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md index 38f5b9fe69ce6..4e138fccb2844 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarRegistrationByEmail Update the navigation property registrations in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationByEmail](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationByEmail?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md index 2fe5597b96669..9158793a95c1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarRegistrationByUserId Update the navigation property registrations in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationByUserId](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationByUserId?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index e052d3b5ffa5b..03b271b26c548 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarRegistrationConfiguration Update the navigation property registrationConfiguration in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationConfiguration](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationConfiguration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index e3f49a71a812f..cb2ad75f84a42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarRegistrationConfigurationQuestion Update the navigation property questions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarRegistrationConfigurationQuestion?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md index 58c291730034c..833b50e07fe32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarSession Update the navigation property sessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSession](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md index 9defc3ddb6121..b6fec0dc5c3e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarSessionAttendanceReport Update the navigation property attendanceReports in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSessionAttendanceReport](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSessionAttendanceReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index b892885bbe16d..bed190770e168 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -15,6 +15,9 @@ title: Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord Update the navigation property attendanceRecords in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord](/powershell/module/Microsoft.Graph.Beta.Bookings/Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From f815363e2d454ffab025a7f0a8fd262019bcebfd Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:57 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- .../Get-MgBookingBusiness.md | 7 ++++++- .../Get-MgBookingBusinessAppointment.md | 7 ++++++- .../Get-MgBookingBusinessCalendarView.md | 9 +++++++-- .../Get-MgBookingBusinessCustomQuestion.md | 7 ++++++- .../Get-MgBookingBusinessCustomer.md | 7 ++++++- .../Get-MgBookingBusinessService.md | 7 ++++++- .../Get-MgBookingBusinessStaffAvailability.md | 7 ++++++- .../Get-MgBookingBusinessStaffMember.md | 7 ++++++- .../Get-MgBookingCurrency.md | 7 ++++++- .../Get-MgVirtualEventTownhall.md | 7 ++++++- .../Get-MgVirtualEventTownhallByUserIdAndRole.md | 11 +---------- .../Get-MgVirtualEventTownhallByUserRole.md | 9 +++++++-- .../Get-MgVirtualEventTownhallPresenter.md | 7 ++++++- ...gVirtualEventTownhallSessionAttendanceReport.md | 7 ++++++- ...nhallSessionAttendanceReportAttendanceRecord.md | 7 ++++++- .../Get-MgVirtualEventWebinar.md | 7 ++++++- .../Get-MgVirtualEventWebinarByUserIdAndRole.md | 11 +---------- .../Get-MgVirtualEventWebinarByUserRole.md | 9 +++++++-- .../Get-MgVirtualEventWebinarRegistration.md | 7 ++++++- ...Get-MgVirtualEventWebinarRegistrationByEmail.md | 11 +---------- ...et-MgVirtualEventWebinarRegistrationByUserId.md | 11 +---------- ...VirtualEventWebinarRegistrationConfiguration.md | 7 ++++++- ...ventWebinarRegistrationConfigurationQuestion.md | 7 ++++++- ...Get-MgVirtualEventWebinarRegistrationSession.md | 7 ++++++- .../Get-MgVirtualEventWebinarSession.md | 7 ++++++- ...MgVirtualEventWebinarSessionAttendanceReport.md | 7 ++++++- ...binarSessionAttendanceReportAttendanceRecord.md | 7 ++++++- .../New-MgBookingBusiness.md | 10 +++++++--- .../New-MgBookingBusinessAppointment.md | 11 +---------- .../New-MgBookingBusinessCalendarView.md | 11 +---------- .../New-MgBookingBusinessCustomQuestion.md | 7 ++++++- .../New-MgBookingBusinessCustomer.md | 7 ++++++- .../New-MgBookingBusinessService.md | 11 +---------- .../New-MgBookingBusinessStaffMember.md | 7 ++++++- .../New-MgBookingCurrency.md | 11 +---------- .../New-MgVirtualEventTownhall.md | 11 +---------- .../New-MgVirtualEventTownhallPresenter.md | 14 ++++++++++++-- .../New-MgVirtualEventWebinar.md | 11 +---------- .../New-MgVirtualEventWebinarPresenter.md | 14 ++++++++++++-- .../New-MgVirtualEventWebinarRegistration.md | 14 ++++++++++++-- ...ventWebinarRegistrationConfigurationQuestion.md | 14 ++++++++++++-- .../Publish-MgBookingBusiness.md | 7 ++++++- .../Remove-MgBookingBusiness.md | 11 +---------- .../Remove-MgBookingBusinessAppointment.md | 7 ++++++- .../Remove-MgBookingBusinessCalendarView.md | 11 +---------- .../Remove-MgBookingBusinessCustomQuestion.md | 7 ++++++- .../Remove-MgBookingBusinessCustomer.md | 7 ++++++- .../Remove-MgBookingBusinessService.md | 11 +---------- .../Remove-MgBookingBusinessStaffMember.md | 11 +---------- .../Remove-MgBookingCurrency.md | 11 +---------- .../Remove-MgVirtualEventTownhallPresenter.md | 7 ++++++- ...ventWebinarRegistrationConfigurationQuestion.md | 7 ++++++- .../Stop-MgBookingBusinessAppointment.md | 10 +++++++--- .../Stop-MgBookingBusinessCalendarView.md | 11 +---------- .../Unpublish-MgBookingBusiness.md | 7 ++++++- .../Update-MgBookingBusiness.md | 7 ++++++- .../Update-MgBookingBusinessAppointment.md | 14 ++++++++++++-- .../Update-MgBookingBusinessCalendarView.md | 11 +---------- .../Update-MgBookingBusinessCustomQuestion.md | 7 ++++++- .../Update-MgBookingBusinessCustomer.md | 7 ++++++- .../Update-MgBookingBusinessService.md | 11 +---------- .../Update-MgBookingBusinessStaffMember.md | 11 +---------- .../Update-MgBookingCurrency.md | 11 +---------- .../Update-MgVirtualEventTownhall.md | 7 ++++++- .../Update-MgVirtualEventWebinar.md | 7 ++++++- .../Update-MgVirtualEventWebinarPresenter.md | 7 ++++++- 66 files changed, 331 insertions(+), 258 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index 8e4ed3992a4c1..eadf1d325e16c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md @@ -67,13 +67,18 @@ Get the properties and relationships of a bookingBusiness object. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness +``` +This example shows how to use the Get-MgBookingBusiness Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index 6e1fd9c01d704..ff1ecca904df6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -70,13 +70,18 @@ The start and end properties are always returned in UTC. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md index ae5bd949bd292..187c2efa5fba7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md @@ -65,12 +65,17 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings -Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" +Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" + +``` +This example shows how to use the Get-MgBookingBusinessCalendarView Cmdlet. + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index e638e1d780d55..429e84b2d540d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md @@ -68,13 +68,18 @@ Read the properties and relationships of a bookingCustomQuestion object. | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index 64d07735492b9..f4943a901a739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md @@ -68,13 +68,18 @@ Get the properties and relationships of a bookingCustomer object. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index 7f10b170ccabb..10300ca2942ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md @@ -68,13 +68,18 @@ Get the properties and relationships of a bookingService object in the specified | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Get-MgBookingBusinessService Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index 2480bb950de4c..739e556747a6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -80,8 +80,9 @@ Get the availability information of staff members of a Microsoft Bookings calend | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, Calendars.Read, Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -101,6 +102,10 @@ endDateTime = @{ Get-MgBookingBusinessStaffAvailability -BookingBusinessId $bookingBusinessId -BodyParameter $params +``` +This example shows how to use the Get-MgBookingBusinessStaffAvailability Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index f41ca524a850f..76557cec3e765 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md @@ -68,13 +68,18 @@ Get the properties and relationships of a bookingStaffMember in the specified bo | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index 5c76b072e54c6..333d4f027af3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -69,13 +69,18 @@ Use the id property, which is the currency code, to specify the currency. | Application | Not supported | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency +``` +This example shows how to use the Get-MgBookingCurrency Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index 5244b4e0ae893..3e363b168827f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -69,13 +69,18 @@ All roles can get the details of a townhall event. | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhall -VirtualEventTownhallId $virtualEventTownhallId +``` +This example shows how to use the Get-MgVirtualEventTownhall Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index 4e372c355f2b7..4548e426914f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -59,16 +59,6 @@ Get a list of virtualEventTownhall objects where the specified user is either th | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -552,5 +542,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index d9ca4791460fa..66b859000eb51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -59,12 +59,17 @@ Get a list of virtualEventTownhall objects where the signed-in user is either th | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings -Get-MgVirtualEventTownhallByUserRole -Role $roleId +Get-MgVirtualEventTownhallByUserRole -Role $roleId + +``` +This example shows how to use the Get-MgVirtualEventTownhallByUserRole Cmdlet. + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index 544e434f9b03d..3352cb13be916 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -70,13 +70,18 @@ Currently the supported virtual event types are: \r- virtualEventTownhall\r- vir | Application | VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId +``` +This example shows how to use the Get-MgVirtualEventTownhallPresenter Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md index 497463da0b1c2..0707ec1e97596 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md @@ -64,13 +64,18 @@ Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. ## EXAMPLES +### Example 1: Get the attendance report for a town hall session by ID -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallSessionAttendanceReport -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId +``` +This example will get the attendance report for a town hall session by id + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 6e378896210c9..006d887fa3036 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -66,13 +66,18 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES +### Example 1: List attendance records for the attendance report of a town hall session -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId +``` +This example will list attendance records for the attendance report of a town hall session + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index 681b032bfb1c6..4e17f3a3a0c89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -69,13 +69,18 @@ All roles can get the details of a webinar event. | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinar +``` +This example shows how to use the Get-MgVirtualEventWebinar Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index e54d55f0bbb24..e4f39f7510277 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -59,16 +59,6 @@ Get a virtualEventWebinar collection where the specified user is either the orga | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -552,5 +542,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 835125daabf0e..9539ff420a15d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -59,12 +59,17 @@ Get a virtualEventWebinar collection where the signed-in user is either the orga | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings -Get-MgVirtualEventWebinarByUserRole -Role $roleId +Get-MgVirtualEventWebinarByUserRole -Role $roleId + +``` +This example shows how to use the Get-MgVirtualEventWebinarByUserRole Cmdlet. + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index a920146ffa846..b604c0e92d5da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md @@ -68,13 +68,18 @@ Get the properties and relationships of a virtualEventRegistration object. | Application | VirtualEvent.Read.Chat, VirtualEvent.Read.All, VirtualEventRegistration-Anon.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId +``` +This example shows how to use the Get-MgVirtualEventWebinarRegistration Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md index 918c1fa1e3c07..5e851f856f6b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. -## 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.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md index 897e07a0fdf34..0ec54d36d74d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the properties and relationships of a virtualEventRegistration object. -## 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.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md index 57f831d36221f..ebb00ed055337 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md @@ -50,13 +50,18 @@ This cmdlet has the following aliases, Read the properties and relationships of a virtualEventWebinarRegistrationConfiguration object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationConfiguration -VirtualEventWebinarId $virtualEventWebinarId +``` +This example shows how to use the Get-MgVirtualEventWebinarRegistrationConfiguration Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index de440353b3dd6..a647d47e8482e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -62,13 +62,18 @@ This cmdlet has the following aliases, Registration questions. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId +``` +This example shows how to use the Get-MgVirtualEventWebinarRegistrationConfigurationQuestion Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md index 6f122e1b37759..cd019a474f9de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md @@ -62,13 +62,18 @@ This cmdlet has the following aliases, Sessions for a registration. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarRegistrationSession -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventRegistrationId $virtualEventRegistrationId +``` +This example shows how to use the Get-MgVirtualEventWebinarRegistrationSession Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 7cd3d795fce2b..34ae34836dcc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -70,13 +70,18 @@ Currently, the following virtual event types are supported: \r- virtualEventTown | Application | VirtualEvent.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSession -VirtualEventWebinarId $virtualEventWebinarId +``` +This example shows how to use the Get-MgVirtualEventWebinarSession Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md index 0394c79bee5f9..19e3b37fb2c39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md @@ -64,13 +64,18 @@ Get the meetingAttendanceReport for an onlineMeeting or a virtualEvent. When an online meeting ends, an attendance report is generated for that session. ## EXAMPLES +### Example 1: Get the attendance report for a webinar session by ID -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSessionAttendanceReport -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId +``` +This example will get the attendance report for a webinar session by id + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index dad036659b9bc..bd40e4872f269 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -65,13 +65,18 @@ List of attendance records of an attendance report. Read-only. ## EXAMPLES +### Example 1: List attendance records of a webinar session's attendance report -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventSessionId $virtualEventSessionId -MeetingAttendanceReportId $meetingAttendanceReportId +``` +This example will list attendance records of a webinar session's attendance report + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md index ebc7d9d25e183..ef00fe035a936 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md @@ -63,16 +63,16 @@ This is the first step in setting up a Bookings business where you must specify You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ displayName = "Fourth Coffee" address = @{ - postOfficeBox = "P.O. -Box 123" + postOfficeBox = "P.O. Box 123" street = "4567 Main Street" city = "Buffalo" state = "NY" @@ -87,6 +87,10 @@ Box 123" New-MgBookingBusiness -BodyParameter $params +``` +This example shows how to use the New-MgBookingBusiness Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index 39b687c22c8f0..a6b3548ebb3c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -99,16 +99,6 @@ Create a new bookingAppointment for the specified bookingBusiness. | Delegated (personal Microsoft account) | Not supported | | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformation @@ -1504,5 +1494,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index f0f368590e5bf..8020fb5f8c3a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -99,16 +99,6 @@ Create new navigation property to calendarView for solutions | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformation @@ -1503,5 +1493,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index 1d228ff289af7..19e8190c06958 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -80,8 +80,9 @@ Create a new bookingCustomQuestion object. | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -95,6 +96,10 @@ $params = @{ New-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BodyParameter $params +``` +This example shows how to use the New-MgBookingBusinessCustomQuestion Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index 6ee4442aeb1ed..f75b57eae67f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -74,8 +74,9 @@ Create a new bookingCustomer object. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -117,6 +118,10 @@ $params = @{ New-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BodyParameter $params +``` +This example shows how to use the New-MgBookingBusinessCustomer Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index 2f9bc725c537e..ebe37acb2624e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -93,16 +93,6 @@ Create a new bookingService for the specified bookingBusiness. | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformation @@ -1336,5 +1326,6 @@ Use the email address specified in the email property of the bookingBusiness ent + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index bff250aa5d910..4a2e10f478d1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -75,8 +75,9 @@ Create a new bookingStaffMember in the specified bookingBusiness. | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -161,6 +162,10 @@ $params = @{ New-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BodyParameter $params +``` +This example shows how to use the New-MgBookingBusinessStaffMember Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md index 371b7cdac5616..1675f7630a9b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Create new navigation property to bookingCurrencies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -420,5 +410,6 @@ For example, the currency symbol for the US dollar and for the Australian dollar + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md index 976cf58390f25..4217817c7beab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md @@ -55,16 +55,6 @@ This cmdlet has the following aliases, Create a new virtualEventTownhall object in draft mode. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1101,5 +1091,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md index 5a2f9590bb632..90bd6d62a4e44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md @@ -74,8 +74,9 @@ Create a new virtualEventPresenter object on a virtual event. Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES +### Example 1: Create an in-tenant presenter on a **virtualEventTownhall** -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -88,7 +89,12 @@ $params = @{ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params -### EXAMPLE 2 +``` +This example will create an in-tenant presenter on a **virtualeventtownhall** + +### Example 2: Create an out-of-tenant presenter on a **virtualEventTownhall** + +```powershell Import-Module Microsoft.Graph.Bookings @@ -102,6 +108,10 @@ $params = @{ New-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params +``` +This example will create an out-of-tenant presenter on a **virtualeventtownhall** + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md index ca17e22c71563..39284c5cd159a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md @@ -56,16 +56,6 @@ This cmdlet has the following aliases, Create a new virtualEventWebinar object in draft mode. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1304,5 +1294,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md index 1948f3af8e7cf..6ae7a99ef4228 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md @@ -74,8 +74,9 @@ Create a new virtualEventPresenter object on a virtual event. Currently, the following types of virtual events are supported: \r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES +### Example 1: Create an in-tenant presenter on a **virtualEventWebinar** -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -88,7 +89,12 @@ $params = @{ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -### EXAMPLE 2 +``` +This example will create an in-tenant presenter on a **virtualeventwebinar** + +### Example 2: Create an out-of-tenant presenter on a **virtualEventWebinar** + +```powershell Import-Module Microsoft.Graph.Bookings @@ -102,6 +108,10 @@ $params = @{ New-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params +``` +This example will create an out-of-tenant presenter on a **virtualeventwebinar** + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index 391e30865c172..78d5fe76f7589 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -92,8 +92,9 @@ This method registers the person for the webinar. | Application | VirtualEventRegistration-Anon.ReadWrite.Chat, VirtualEventRegistration-Anon.ReadWrite.All, | ## EXAMPLES +### Example 1: Creating registration record with delegated permission -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -135,7 +136,12 @@ $params = @{ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -### EXAMPLE 2 +``` +This example shows creating registration record with delegated permission + +### Example 2: Creating registration record with application permission + +```powershell Import-Module Microsoft.Graph.Bookings @@ -179,6 +185,10 @@ $params = @{ New-MgVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params +``` +This example shows creating registration record with application permission + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 40d48adf76dbb..3143a35af4f4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -72,8 +72,9 @@ Create a registration question for a webinar. You can create either a predefined registration question or a custom registration question. ## EXAMPLES +### Example 1: Add a custom registration question to a webinar registration -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -90,12 +91,21 @@ $params = @{ New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params -### EXAMPLE 2 +``` +This example will add a custom registration question to a webinar registration + +### Example 2: Add a predefined registration question to a webinar registration + +```powershell Import-Module Microsoft.Graph.Bookings New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId +``` +This example will add a predefined registration question to a webinar registration + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index 18be0ffb4f37a..a67131928b208 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md @@ -58,13 +58,18 @@ Set the isPublished property to true, and the publicUrl property to the URL of t | Application | Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Publish-MgBookingBusiness Cmdlet. + + ## PARAMETERS ### -BookingBusinessId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md index d43e6ea6f333b..3c5af2f43a761 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete a bookingBusiness object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -433,5 +423,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index abbbc5f89179b..135e7a080f0a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md @@ -56,13 +56,18 @@ Delete a bookingAppointment in the specified bookingBusiness. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId +``` +This example shows how to use the Remove-MgBookingBusinessAppointment Cmdlet. + + ## PARAMETERS ### -BookingAppointmentId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md index 23199dbf5f783..a13125fb2e821 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property calendarView for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingAppointmentId @@ -453,5 +443,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index d492e39b4c750..5dfa7d99aef3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md @@ -56,13 +56,18 @@ Delete a bookingCustomQuestion object. | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId +``` +This example shows how to use the Remove-MgBookingBusinessCustomQuestion Cmdlet. + + ## PARAMETERS ### -BookingBusinessId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index d2342da9d2d1c..eb2fcb82f8f75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md @@ -56,13 +56,18 @@ Delete the specified bookingCustomer object. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId +``` +This example shows how to use the Remove-MgBookingBusinessCustomer Cmdlet. + + ## PARAMETERS ### -BookingBusinessId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index 97f200e19ed4c..8c3aa7f0e0382 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md @@ -55,16 +55,6 @@ Delete a bookingService object in the specified bookingBusiness. | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -462,5 +452,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index f5b74f1f0c6a3..feb942e600dfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md @@ -55,16 +55,6 @@ Delete a bookingStaffMember in the specified bookingBusiness. | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -462,5 +452,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md index 0e135fc99258d..cb3356bc8b502 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property bookingCurrencies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingCurrencyId @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md index 3b37b3932eaae..11a75d6411a40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md @@ -51,13 +51,18 @@ Delete a virtualEventPresenter from a virtual event. Currently the supported virtual event types are:\r- virtualEventTownhall\r- virtualEventWebinar ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -VirtualEventPresenterId $virtualEventPresenterId +``` +This example shows how to use the Remove-MgVirtualEventTownhallPresenter Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 8490294839c12..60b9ec54479a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -51,13 +51,18 @@ Delete a registration question from a webinar. The question can either be a predefined registration question or a custom registration question. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventRegistrationQuestionBaseId $virtualEventRegistrationQuestionBaseId +``` +This example shows how to use the Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index 67a96b20a7150..4cbab15f50965 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -78,18 +78,22 @@ Cancel the specified bookingAppointment in the specified bookingBusiness and sen | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ - cancellationMessage = "Your appointment has been successfully cancelled. -Please call us again." + cancellationMessage = "Your appointment has been successfully cancelled. Please call us again." } Stop-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params +``` +This example shows how to use the Stop-MgBookingBusinessAppointment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index 8de57e28bf23e..842dfa7dc72f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Cancel the specified bookingAppointment in the specified bookingBusiness and send a message to the involved customer and staff members. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -563,5 +553,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index 7b575b29f8e94..34843bc514ea8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md @@ -58,13 +58,18 @@ Set the isPublished property to false, and the publicUrl property to null. | Application | Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId +``` +This example shows how to use the Unpublish-MgBookingBusiness Cmdlet. + + ## PARAMETERS ### -BookingBusinessId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index ddb90ec1025ed..b7538679459b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -99,8 +99,9 @@ Update the properties of a bookingBusiness object. | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -117,6 +118,10 @@ $params = @{ Update-MgBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params +``` +This example shows how to use the Update-MgBookingBusiness Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index d04486e712a29..9824221b5f5de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -100,8 +100,9 @@ Update the properties of a bookingAppointment object in the specified bookingBus | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Change the date of service -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -121,7 +122,12 @@ $params = @{ Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params -### EXAMPLE 2 +``` +This example will change the date of service + +### Example 2: Update the customers for an appointment + +```powershell Import-Module Microsoft.Graph.Bookings @@ -147,6 +153,10 @@ $params = @{ Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params +``` +This example will update the customers for an appointment + + ## PARAMETERS ### -AdditionalInformation diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md index 58737790031e8..06356edbe0a70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md @@ -91,16 +91,6 @@ This cmdlet has the following aliases, Update the navigation property calendarView in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformation @@ -1522,5 +1512,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index 85125d8a4e000..0c772702b0547 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -80,8 +80,9 @@ Update the properties of a bookingCustomQuestion object. | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -95,6 +96,10 @@ $params = @{ Update-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -BodyParameter $params +``` +This example shows how to use the Update-MgBookingBusinessCustomQuestion Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index 4e450913bd399..3f6a05db8e6dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -76,8 +76,9 @@ Update the properties of a bookingCustomer object. | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -89,6 +90,10 @@ $params = @{ Update-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId -BodyParameter $params +``` +This example shows how to use the Update-MgBookingBusinessCustomer Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 4a670856ee8b6..79ab2d84dc9a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -96,16 +96,6 @@ The following are some examples you can customize for a service:\r- Price\r- Typ | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformation @@ -1366,5 +1356,6 @@ Use the email address specified in the email property of the bookingBusiness ent + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index b726e4221c692..f5582777b7941 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md @@ -75,16 +75,6 @@ Update the properties of a bookingStaffMember in the specified bookingBusiness. | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.ReadWrite.All, Bookings.Manage.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -544,5 +534,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md index bb9c003fed60f..1309d53dd4e85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Update the navigation property bookingCurrencies in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -545,5 +535,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md index 4861d658c788f..f60496a5e6c95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md @@ -88,8 +88,9 @@ Update the properties of a virtualEventTownhall object. Only the Organizer and Co-organizer can make changes to a townhall event. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -106,6 +107,10 @@ $params = @{ Update-MgVirtualEventTownhall -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params +``` +This example shows how to use the Update-MgVirtualEventTownhall Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md index 048717aeb402c..0f620dffa36d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md @@ -90,8 +90,9 @@ Update the properties of a virtualEventWebinar object. Only the Organizer and Co-organizer can make changes to a webinar event. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -108,6 +109,10 @@ $params = @{ Update-MgVirtualEventWebinar -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params +``` +This example shows how to use the Update-MgVirtualEventWebinar Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md index fd9093d6acbdb..dfe29defaddd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md @@ -75,8 +75,9 @@ Update the properties of a virtualEventPresenter object. Currently the supported virtual event types are:\r- virtualEventWebinar. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Bookings @@ -95,6 +96,10 @@ $params = @{ Update-MgVirtualEventWebinarPresenter -VirtualEventWebinarId $virtualEventWebinarId -VirtualEventPresenterId $virtualEventPresenterId -BodyParameter $params +``` +This example shows how to use the Update-MgVirtualEventWebinarPresenter Cmdlet. + + ## PARAMETERS ### -AdditionalProperties From 06deefa9011b24604c8574a496932302a80f6407 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:01 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- .../Get-MgBookingBusinessAppointmentCount.md | 11 +---------- .../Get-MgBookingBusinessCalendarViewCount.md | 11 +---------- .../Get-MgBookingBusinessCount.md | 11 +---------- .../Get-MgBookingBusinessCustomQuestionCount.md | 11 +---------- .../Get-MgBookingBusinessCustomerCount.md | 11 +---------- .../Get-MgBookingBusinessServiceCount.md | 11 +---------- .../Get-MgBookingBusinessStaffMemberCount.md | 11 +---------- .../Get-MgBookingCurrencyCount.md | 11 +---------- .../Microsoft.Graph.Bookings/Get-MgVirtualEvent.md | 11 +---------- .../Get-MgVirtualEventCount.md | 11 +---------- .../Get-MgVirtualEventPresenter.md | 11 +---------- .../Get-MgVirtualEventPresenterCount.md | 11 +---------- .../Get-MgVirtualEventSession.md | 11 +---------- .../Get-MgVirtualEventSessionAttendanceReport.md | 11 +---------- ...ualEventSessionAttendanceReportAttendanceRecord.md | 11 +---------- ...entSessionAttendanceReportAttendanceRecordCount.md | 11 +---------- .../Get-MgVirtualEventSessionAttendanceReportCount.md | 11 +---------- .../Get-MgVirtualEventSessionCount.md | 11 +---------- .../Get-MgVirtualEventTownhallCount.md | 11 +---------- .../Get-MgVirtualEventTownhallPresenterCount.md | 11 +---------- .../Get-MgVirtualEventTownhallSession.md | 11 +---------- ...allSessionAttendanceReportAttendanceRecordCount.md | 11 +---------- ...irtualEventTownhallSessionAttendanceReportCount.md | 11 +---------- .../Get-MgVirtualEventTownhallSessionCount.md | 11 +---------- .../Get-MgVirtualEventWebinarCount.md | 11 +---------- .../Get-MgVirtualEventWebinarPresenter.md | 11 +---------- .../Get-MgVirtualEventWebinarPresenterCount.md | 11 +---------- ...ntWebinarRegistrationConfigurationQuestionCount.md | 11 +---------- .../Get-MgVirtualEventWebinarRegistrationCount.md | 11 +---------- ...t-MgVirtualEventWebinarRegistrationSessionCount.md | 11 +---------- ...narSessionAttendanceReportAttendanceRecordCount.md | 11 +---------- ...VirtualEventWebinarSessionAttendanceReportCount.md | 11 +---------- .../Get-MgVirtualEventWebinarSessionCount.md | 11 +---------- .../Microsoft.Graph.Bookings/New-MgVirtualEvent.md | 11 +---------- .../New-MgVirtualEventPresenter.md | 11 +---------- .../New-MgVirtualEventSession.md | 11 +---------- .../New-MgVirtualEventSessionAttendanceReport.md | 11 +---------- ...ualEventSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../New-MgVirtualEventTownhallSession.md | 11 +---------- ...w-MgVirtualEventTownhallSessionAttendanceReport.md | 11 +---------- ...TownhallSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../New-MgVirtualEventWebinarSession.md | 11 +---------- ...ew-MgVirtualEventWebinarSessionAttendanceReport.md | 11 +---------- ...tWebinarSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Publish-MgVirtualEvent.md | 11 +---------- .../Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md | 11 +---------- .../Remove-MgVirtualEventPresenter.md | 11 +---------- .../Remove-MgVirtualEventSession.md | 11 +---------- .../Remove-MgVirtualEventSessionAttendanceReport.md | 11 +---------- ...ualEventSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Remove-MgVirtualEventTownhall.md | 11 +---------- .../Remove-MgVirtualEventTownhallSession.md | 11 +---------- ...e-MgVirtualEventTownhallSessionAttendanceReport.md | 11 +---------- ...TownhallSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Remove-MgVirtualEventWebinar.md | 11 +---------- .../Remove-MgVirtualEventWebinarPresenter.md | 11 +---------- .../Remove-MgVirtualEventWebinarRegistration.md | 11 +---------- ...Remove-MgVirtualEventWebinarRegistrationByEmail.md | 11 +---------- ...emove-MgVirtualEventWebinarRegistrationByUserId.md | 11 +---------- ...-MgVirtualEventWebinarRegistrationConfiguration.md | 11 +---------- .../Remove-MgVirtualEventWebinarSession.md | 11 +---------- ...ve-MgVirtualEventWebinarSessionAttendanceReport.md | 11 +---------- ...tWebinarSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Set-MgVirtualEventExternalEventInformation.md | 11 +---------- .../Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md | 11 +---------- .../Stop-MgVirtualEventWebinarRegistration.md | 11 +---------- .../Stop-MgVirtualEventWebinarRegistrationEmail.md | 11 +---------- .../Stop-MgVirtualEventWebinarRegistrationUserId.md | 11 +---------- .../Microsoft.Graph.Bookings/Update-MgVirtualEvent.md | 11 +---------- .../Update-MgVirtualEventPresenter.md | 11 +---------- .../Update-MgVirtualEventSession.md | 11 +---------- .../Update-MgVirtualEventSessionAttendanceReport.md | 11 +---------- ...ualEventSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Update-MgVirtualEventTownhallPresenter.md | 11 +---------- .../Update-MgVirtualEventTownhallSession.md | 11 +---------- ...e-MgVirtualEventTownhallSessionAttendanceReport.md | 11 +---------- ...TownhallSessionAttendanceReportAttendanceRecord.md | 11 +---------- .../Update-MgVirtualEventWebinarRegistration.md | 11 +---------- ...Update-MgVirtualEventWebinarRegistrationByEmail.md | 11 +---------- ...pdate-MgVirtualEventWebinarRegistrationByUserId.md | 11 +---------- ...-MgVirtualEventWebinarRegistrationConfiguration.md | 11 +---------- ...alEventWebinarRegistrationConfigurationQuestion.md | 11 +---------- .../Update-MgVirtualEventWebinarSession.md | 11 +---------- ...te-MgVirtualEventWebinarSessionAttendanceReport.md | 11 +---------- ...tWebinarSessionAttendanceReportAttendanceRecord.md | 11 +---------- 85 files changed, 85 insertions(+), 850 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 366b65679f797..23ad0c9f1a1d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index 766830ac9d5c3..b7d3f5f7fb2ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -442,5 +432,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index 060f1c6463017..ec5bb3781a7bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.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.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index ef5c2118ee608..f60a1c1c645ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index b39b53ccdc32e..753ac7d3e9392 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Bookings.Read.All, Bookings.Manage.All, Bookings.ReadWrite.All, BookingsAppointment.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index 42ab699be9d4c..d4ad098648f19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index b58a8b20e18fc..c79992c9e25b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BookingsAppointment.ReadWrite.All, Bookings.Manage.All, Bookings.Read.All, Bookings.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -BookingBusinessId @@ -396,5 +386,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index 5881792bd7383..ad3efffcd3d81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md index ca135b2fc76b6..c78e104e53220 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md @@ -58,16 +58,6 @@ This cmdlet has the following aliases, Get events from solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -573,5 +563,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md index 8942aa229b236..4acc413259637 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.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.Bookings/Get-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md index af4d28188d325..88eec44497820 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, The virtual event presenters. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -601,5 +591,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md index 8161ca2523659..308cd62201dd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.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.Bookings/Get-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md index e6d5900fc96e6..210b85dde000f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, The sessions for the virtual event. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -601,5 +591,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md index fe3221e728ff6..48e025f3102a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.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 @@ -631,5 +621,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index ca12b1f6f70cf..ae29261c18065 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -64,16 +64,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 @@ -660,5 +650,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md index 47ccf88e6f0a9..ba69a7b9d6e5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.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 @@ -432,5 +422,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md index da47f66e95635..1fe1b7466456d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.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 @@ -410,5 +400,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md index 559ae3e1537ee..306798544ffde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.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.Bookings/Get-MgVirtualEventTownhallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md index d291bda380ac5..0d81ab5119c79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.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.Bookings/Get-MgVirtualEventTownhallPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md index 055d7af171101..800567c2ecc50 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.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.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index 9c674237cc711..75a235f27a175 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -67,16 +67,6 @@ The sessions for the virtual event. | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEvent.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -609,5 +599,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md index e1df130ac3a2f..08e047fa78c2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.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.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md index d11b3f63304c4..f844c9dbbb506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.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.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index fad1824620e1e..dd8d7d54ba723 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEvent.Read.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.Bookings/Get-MgVirtualEventWebinarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md index 27d388c7fd6da..641f52a7c3528 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.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.Bookings/Get-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md index ba92c802d93a4..0a1299fb5c034 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, The virtual event presenters. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -601,5 +591,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md index 01d7e8184e3fe..f28d57f4e6efc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.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.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md index 134f711b0b219..a3413efcdc56c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.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.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md index 8344ec1b472d2..199f353404c4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.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.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md index 42234bd3e02ea..3ef3ae557febb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.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.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md index aedb447bd0db4..57407c3bdc0f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.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.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md index 4d6842473cbee..aed87c54e9925 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.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.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index 8f13c8ee00892..4a49c374c0f2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEvent.Read.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.Bookings/New-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md index 2fe28de5413b8..3bba24c21a5e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md @@ -53,16 +53,6 @@ This cmdlet has the following aliases, Create new navigation property to events for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -985,5 +975,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md index 4affd0474e5d4..8f5224232a04f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Create new navigation property to presenters for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -640,5 +630,6 @@ PRESENTERDETAILS ``: virtualEventPr + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md index 01c9069e52133..622d710b7794a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md @@ -99,16 +99,6 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1768,5 +1758,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md index 905f91016102a..3af0e07e87309 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for solutions -## 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.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 93261a8c5a4b8..60e9be3e47389 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -813,5 +803,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md index 4595dc854e122..e100b77a83472 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md @@ -101,16 +101,6 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1770,5 +1760,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md index 30ddbee465486..da132f7113f04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for solutions -## 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.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 3e6f8e2e255a1..5965622d431d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions -## 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.Bookings/New-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md index 2d74bb79b5ecd..58e9ef7f2b410 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md @@ -100,16 +100,6 @@ This cmdlet has the following aliases, Create new navigation property to sessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1769,5 +1759,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md index 0f04ba383475d..28901c06ecc4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceReports for solutions -## 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.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index f0e0e74d29388..3548c965626ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Create new navigation property to attendanceRecords for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -813,5 +803,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md index 4a2f920c78b64..45f8ffb7d2332 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Invoke action publish -## 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.Bookings/Remove-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md index 4d1e19339cf81..33e3282758026 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property events for solutions -## 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.Bookings/Remove-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md index adb72a9035610..207719b891652 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property presenters for solutions -## 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.Bookings/Remove-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md index 4919c07f47161..3851b59e6d3a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sessions for solutions -## 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.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md index 04a588309d98e..08cf4040e5dbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for solutions -## 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.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 25086872f9907..3e23915fe209e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttendanceRecordId @@ -496,5 +486,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md index a6668db7a9e83..ba6a51f54e3b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property townhalls for solutions -## 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.Bookings/Remove-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md index 8d48773a187e6..579d690eba146 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property sessions for solutions -## 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.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md index 2e047dcb7ae82..4e27403995453 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for solutions -## 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.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 73158a41bbbf8..7fce1f9bd6806 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttendanceRecordId @@ -498,5 +488,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md index 9787d5401b939..738b0b761b426 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property webinars for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md index 5657736e65040..3f3fb58e8224c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property presenters for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md index 959d87b3de8f2..dbf8b36d955f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property registrations for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md index f5c8209dbf6d8..71c135fb8e899 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property registrations for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md index 0c958d09c6301..7612cd03e326e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property registrations for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md index b4d7c127cc2e4..a791fe9068784 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property registrationConfiguration for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md index a79d6539d5672..8562b0e85930b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sessions for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md index 9565337ddc12d..662df1a224b3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceReports for solutions -## 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.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index d87b0364e6007..2a16800aee861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property attendanceRecords for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttendanceRecordId @@ -496,5 +486,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index b3e21b5e5d9c9..5f8618acbc090 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Invoke action setExternalEventInformation -## 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.Bookings/Stop-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md index cf06530a3d362..3b688509d1434 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Invoke action cancel -## 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.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index d53e22400b3a8..afa42e865a487 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md @@ -56,16 +56,6 @@ Cancel a registrant's registration record for a webinar. | Delegated (personal Microsoft account) | Not supported | | Application | VirtualEventRegistration-Anon.ReadWrite.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.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md index 9820d26f46c66..36204e40a842c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. -## 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.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md index ad94cbf9697df..164fd18cc3417 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Cancel a registrant's registration record for a webinar. -## 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.Bookings/Update-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md index a4c82fd8a43f9..f47e9b6421bfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property events in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1169,5 +1159,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md index dede9d26dda27..35508c24eda5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property presenters in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -667,5 +657,6 @@ PRESENTERDETAILS ``: virtualEventPr + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md index 0d760fad5129e..b9eef6dd6ad36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md @@ -100,16 +100,6 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1796,5 +1786,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md index d3c0c78163084..442a39ff378a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -798,5 +788,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index e645efc42b0c1..a4ae8b99569bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -840,5 +830,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md index e9a9c9af1da5d..952511e80a365 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Update the navigation property presenters in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -668,5 +658,6 @@ PRESENTERDETAILS ``: virtualEventPr + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md index 265402f33186e..94071101ce4c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md @@ -101,16 +101,6 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1797,5 +1787,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md index 981088d890f0e..dbea3387c26d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -799,5 +789,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 60717a8e475bf..bfc4dac97d61f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -842,5 +832,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md index 8be2ea4c806d7..2aa3bead04fb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property registrations in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1186,5 +1176,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md index 4e138fccb2844..d38fe5b7ec9c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property registrations in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1186,5 +1176,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md index 9158793a95c1a..c08955e2e6320 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md @@ -81,16 +81,6 @@ This cmdlet has the following aliases, Update the navigation property registrations in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1186,5 +1176,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index 03b271b26c548..5cd3959b8679f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property registrationConfiguration in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -673,5 +663,6 @@ The default value is false. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index cb2ad75f84a42..a373b041def9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property questions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -603,5 +593,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md index 833b50e07fe32..ae29405240dd5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md @@ -101,16 +101,6 @@ This cmdlet has the following aliases, Update the navigation property sessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1797,5 +1787,6 @@ WATERMARKPROTECTION ``: watermarkProte + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md index b6fec0dc5c3e3..6130fab9660fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceReports in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -798,5 +788,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index bed190770e168..fc877ba2e998e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property attendanceRecords in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -840,5 +830,6 @@ INPUTOBJECT ``: Identity Parameter + From 80fbe3f71ce2419772f1da633913c0a6595ae508 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:06 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- .../Get-MgBookingBusinessStaffAvailability.md | 4 ++-- .../Set-MgVirtualEventExternalEventInformation.md | 4 ++-- .../Stop-MgBookingBusinessAppointment.md | 4 ++-- .../Stop-MgBookingBusinessCalendarView.md | 4 ++-- .../Update-MgVirtualEventWebinarRegistrationConfiguration.md | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index 739e556747a6f..2bb17a53fb5ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -137,7 +137,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -439,7 +439,7 @@ HelpMessage: '' ### -StaffIds -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index 5f8618acbc090..b6afc97aebffd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -171,7 +171,7 @@ HelpMessage: '' ### -ExternalEventId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index 4cbab15f50965..f1983e06c2410 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -228,7 +228,7 @@ HelpMessage: '' ### -CancellationMessage -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index 842dfa7dc72f2..e9c53c7fcff8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -203,7 +203,7 @@ HelpMessage: '' ### -CancellationMessage -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index 5cd3959b8679f..b9d3f1d8c9b88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -321,7 +321,7 @@ HelpMessage: '' ### -IsManualApprovalEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -348,7 +348,7 @@ HelpMessage: '' ### -IsWaitlistEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter From 1390091f63ec1e8d14dd558aa4b721fe45e6db97 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:21 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Microsoft.Graph.Bookings/Get-MgBookingBusiness.md | 6 +++--- .../Get-MgBookingBusinessAppointment.md | 6 +++--- .../Get-MgBookingBusinessAppointmentCount.md | 2 +- .../Get-MgBookingBusinessCalendarView.md | 4 ++-- .../Get-MgBookingBusinessCalendarViewCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md | 2 +- .../Get-MgBookingBusinessCustomQuestion.md | 6 +++--- .../Get-MgBookingBusinessCustomQuestionCount.md | 2 +- .../Get-MgBookingBusinessCustomer.md | 6 +++--- .../Get-MgBookingBusinessCustomerCount.md | 2 +- .../Get-MgBookingBusinessService.md | 6 +++--- .../Get-MgBookingBusinessServiceCount.md | 2 +- .../Get-MgBookingBusinessStaffAvailability.md | 4 ++-- .../Get-MgBookingBusinessStaffMember.md | 6 +++--- .../Get-MgBookingBusinessStaffMemberCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgBookingCurrency.md | 6 +++--- .../Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEvent.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md | 2 +- .../Get-MgVirtualEventPresenterCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md | 2 +- .../Get-MgVirtualEventSessionAttendanceReport.md | 2 +- ...MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 2 +- ...tualEventSessionAttendanceReportAttendanceRecordCount.md | 2 +- .../Get-MgVirtualEventSessionAttendanceReportCount.md | 2 +- .../Get-MgVirtualEventSessionCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md | 4 ++-- .../Get-MgVirtualEventTownhallByUserIdAndRole.md | 4 ++-- .../Get-MgVirtualEventTownhallByUserRole.md | 4 ++-- .../Get-MgVirtualEventTownhallCount.md | 2 +- .../Get-MgVirtualEventTownhallPresenter.md | 6 +++--- .../Get-MgVirtualEventTownhallPresenterCount.md | 2 +- .../Get-MgVirtualEventTownhallSession.md | 2 +- .../Get-MgVirtualEventTownhallSessionAttendanceReport.md | 6 +++--- ...lEventTownhallSessionAttendanceReportAttendanceRecord.md | 4 ++-- ...tTownhallSessionAttendanceReportAttendanceRecordCount.md | 2 +- ...et-MgVirtualEventTownhallSessionAttendanceReportCount.md | 2 +- .../Get-MgVirtualEventTownhallSessionCount.md | 2 +- .../Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md | 6 +++--- .../Get-MgVirtualEventWebinarByUserIdAndRole.md | 4 ++-- .../Get-MgVirtualEventWebinarByUserRole.md | 4 ++-- .../Get-MgVirtualEventWebinarCount.md | 2 +- .../Get-MgVirtualEventWebinarPresenter.md | 2 +- .../Get-MgVirtualEventWebinarPresenterCount.md | 2 +- .../Get-MgVirtualEventWebinarRegistration.md | 6 +++--- .../Get-MgVirtualEventWebinarRegistrationByEmail.md | 4 ++-- .../Get-MgVirtualEventWebinarRegistrationByUserId.md | 4 ++-- .../Get-MgVirtualEventWebinarRegistrationConfiguration.md | 4 ++-- ...gVirtualEventWebinarRegistrationConfigurationQuestion.md | 4 ++-- ...ualEventWebinarRegistrationConfigurationQuestionCount.md | 2 +- .../Get-MgVirtualEventWebinarRegistrationCount.md | 2 +- .../Get-MgVirtualEventWebinarRegistrationSession.md | 4 ++-- .../Get-MgVirtualEventWebinarRegistrationSessionCount.md | 2 +- .../Get-MgVirtualEventWebinarSession.md | 6 +++--- .../Get-MgVirtualEventWebinarSessionAttendanceReport.md | 6 +++--- ...alEventWebinarSessionAttendanceReportAttendanceRecord.md | 4 ++-- ...ntWebinarSessionAttendanceReportAttendanceRecordCount.md | 2 +- ...Get-MgVirtualEventWebinarSessionAttendanceReportCount.md | 2 +- .../Get-MgVirtualEventWebinarSessionCount.md | 2 +- .../Microsoft.Graph.Bookings/New-MgBookingBusiness.md | 4 ++-- .../New-MgBookingBusinessAppointment.md | 4 ++-- .../New-MgBookingBusinessCalendarView.md | 2 +- .../New-MgBookingBusinessCustomQuestion.md | 4 ++-- .../New-MgBookingBusinessCustomer.md | 4 ++-- .../New-MgBookingBusinessService.md | 4 ++-- .../New-MgBookingBusinessStaffMember.md | 4 ++-- .../Microsoft.Graph.Bookings/New-MgBookingCurrency.md | 2 +- .../Microsoft.Graph.Bookings/New-MgVirtualEvent.md | 2 +- .../Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md | 2 +- .../Microsoft.Graph.Bookings/New-MgVirtualEventSession.md | 2 +- .../New-MgVirtualEventSessionAttendanceReport.md | 2 +- ...MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 2 +- .../Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md | 4 ++-- .../New-MgVirtualEventTownhallPresenter.md | 4 ++-- .../New-MgVirtualEventTownhallSession.md | 2 +- .../New-MgVirtualEventTownhallSessionAttendanceReport.md | 2 +- ...lEventTownhallSessionAttendanceReportAttendanceRecord.md | 2 +- .../Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md | 4 ++-- .../New-MgVirtualEventWebinarPresenter.md | 4 ++-- .../New-MgVirtualEventWebinarRegistration.md | 4 ++-- ...gVirtualEventWebinarRegistrationConfigurationQuestion.md | 4 ++-- .../New-MgVirtualEventWebinarSession.md | 2 +- .../New-MgVirtualEventWebinarSessionAttendanceReport.md | 2 +- ...alEventWebinarSessionAttendanceReportAttendanceRecord.md | 2 +- .../Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md | 4 ++-- .../Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md | 2 +- .../Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md | 4 ++-- .../Remove-MgBookingBusinessAppointment.md | 4 ++-- .../Remove-MgBookingBusinessCalendarView.md | 2 +- .../Remove-MgBookingBusinessCustomQuestion.md | 4 ++-- .../Remove-MgBookingBusinessCustomer.md | 4 ++-- .../Remove-MgBookingBusinessService.md | 4 ++-- .../Remove-MgBookingBusinessStaffMember.md | 4 ++-- .../Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md | 2 +- .../Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md | 2 +- .../Remove-MgVirtualEventPresenter.md | 2 +- .../Remove-MgVirtualEventSession.md | 2 +- .../Remove-MgVirtualEventSessionAttendanceReport.md | 2 +- ...MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 2 +- .../Remove-MgVirtualEventTownhall.md | 2 +- .../Remove-MgVirtualEventTownhallPresenter.md | 4 ++-- .../Remove-MgVirtualEventTownhallSession.md | 2 +- .../Remove-MgVirtualEventTownhallSessionAttendanceReport.md | 2 +- ...lEventTownhallSessionAttendanceReportAttendanceRecord.md | 2 +- .../Remove-MgVirtualEventWebinar.md | 2 +- .../Remove-MgVirtualEventWebinarPresenter.md | 2 +- .../Remove-MgVirtualEventWebinarRegistration.md | 2 +- .../Remove-MgVirtualEventWebinarRegistrationByEmail.md | 2 +- .../Remove-MgVirtualEventWebinarRegistrationByUserId.md | 2 +- ...Remove-MgVirtualEventWebinarRegistrationConfiguration.md | 2 +- ...gVirtualEventWebinarRegistrationConfigurationQuestion.md | 4 ++-- .../Remove-MgVirtualEventWebinarSession.md | 2 +- .../Remove-MgVirtualEventWebinarSessionAttendanceReport.md | 2 +- ...alEventWebinarSessionAttendanceReportAttendanceRecord.md | 2 +- .../Set-MgVirtualEventExternalEventInformation.md | 2 +- .../Stop-MgBookingBusinessAppointment.md | 4 ++-- .../Stop-MgBookingBusinessCalendarView.md | 4 ++-- .../Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md | 2 +- .../Stop-MgVirtualEventWebinarRegistration.md | 2 +- .../Stop-MgVirtualEventWebinarRegistrationEmail.md | 2 +- .../Stop-MgVirtualEventWebinarRegistrationUserId.md | 2 +- .../Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md | 4 ++-- .../Microsoft.Graph.Bookings/Update-MgBookingBusiness.md | 4 ++-- .../Update-MgBookingBusinessAppointment.md | 4 ++-- .../Update-MgBookingBusinessCalendarView.md | 2 +- .../Update-MgBookingBusinessCustomQuestion.md | 4 ++-- .../Update-MgBookingBusinessCustomer.md | 4 ++-- .../Update-MgBookingBusinessService.md | 4 ++-- .../Update-MgBookingBusinessStaffMember.md | 4 ++-- .../Microsoft.Graph.Bookings/Update-MgBookingCurrency.md | 2 +- .../Microsoft.Graph.Bookings/Update-MgVirtualEvent.md | 2 +- .../Update-MgVirtualEventPresenter.md | 2 +- .../Update-MgVirtualEventSession.md | 2 +- .../Update-MgVirtualEventSessionAttendanceReport.md | 2 +- ...MgVirtualEventSessionAttendanceReportAttendanceRecord.md | 2 +- .../Update-MgVirtualEventTownhall.md | 4 ++-- .../Update-MgVirtualEventTownhallPresenter.md | 2 +- .../Update-MgVirtualEventTownhallSession.md | 2 +- .../Update-MgVirtualEventTownhallSessionAttendanceReport.md | 2 +- ...lEventTownhallSessionAttendanceReportAttendanceRecord.md | 2 +- .../Update-MgVirtualEventWebinar.md | 4 ++-- .../Update-MgVirtualEventWebinarPresenter.md | 4 ++-- .../Update-MgVirtualEventWebinarRegistration.md | 2 +- .../Update-MgVirtualEventWebinarRegistrationByEmail.md | 2 +- .../Update-MgVirtualEventWebinarRegistrationByUserId.md | 2 +- ...Update-MgVirtualEventWebinarRegistrationConfiguration.md | 2 +- ...gVirtualEventWebinarRegistrationConfigurationQuestion.md | 2 +- .../Update-MgVirtualEventWebinarSession.md | 2 +- .../Update-MgVirtualEventWebinarSessionAttendanceReport.md | 2 +- ...alEventWebinarSessionAttendanceReportAttendanceRecord.md | 2 +- 151 files changed, 224 insertions(+), 224 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md index eadf1d325e16c..f30ca54042b02 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusiness.md @@ -563,9 +563,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list?view=graph-rest-1.0) +- [Get-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md index ff1ecca904df6..ce36597472b31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointment.md @@ -593,9 +593,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment) -- [](https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0) +- [Get-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md index 23ad0c9f1a1d9..ccf6b93681b14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessAppointmentCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount) +- [Get-MgBookingBusinessAppointmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessappointmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md index 187c2efa5fba7..60fd3a708aaab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarView.md @@ -632,8 +632,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0) +- [Get-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarview) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md index b7d3f5f7fb2ed..9489480266f11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCalendarViewCount.md @@ -411,7 +411,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount) +- [Get-MgBookingBusinessCalendarViewCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscalendarviewcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md index ec5bb3781a7bf..059f07aea03c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount) +- [Get-MgBookingBusinessCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md index 429e84b2d540d..0f38e386ace3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestion.md @@ -591,9 +591,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion) -- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0) +- [Get-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md index f60a1c1c645ba..f985bb21646a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomQuestionCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount) +- [Get-MgBookingBusinessCustomQuestionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomquestioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md index f4943a901a739..98a238213890d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomer.md @@ -595,9 +595,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer) -- [](https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0) +- [Get-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomer) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md index 753ac7d3e9392..3106910bb5af5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessCustomerCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount) +- [Get-MgBookingBusinessCustomerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinesscustomercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md index 10300ca2942ef..c29befc8cfc18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessService.md @@ -591,9 +591,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice) -- [](https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0) +- [Get-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservice) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md index d4ad098648f19..291564ea4443d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessServiceCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount) +- [Get-MgBookingBusinessServiceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessservicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md index 2bb17a53fb5ef..ccaeb89e0a5dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffAvailability.md @@ -594,8 +594,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0) +- [Get-MgBookingBusinessStaffAvailability](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffavailability) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md index 76557cec3e765..5c8c057135c95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMember.md @@ -595,9 +595,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember) -- [](https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0) +- [Get-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmember) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md index c79992c9e25b1..310431d84c1d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingBusinessStaffMemberCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount) +- [Get-MgBookingBusinessStaffMemberCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingbusinessstaffmembercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md index 333d4f027af3b..cf3bb5bead6dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrency.md @@ -565,9 +565,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency) -- [](https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-1.0) +- [Get-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrency) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md index ad3efffcd3d81..a33372fedce73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgBookingCurrencyCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount) +- [Get-MgBookingCurrencyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgbookingcurrencycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md index c78e104e53220..8d0f05ffaf761 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEvent.md @@ -542,7 +542,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent) +- [Get-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md index 4acc413259637..72b31813acd40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount) +- [Get-MgVirtualEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md index 88eec44497820..31e6801476f1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenter.md @@ -570,7 +570,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter) +- [Get-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md index 308cd62201dd7..38d8431dac235 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventPresenterCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount) +- [Get-MgVirtualEventPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md index 210b85dde000f..502d09a7ee3f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSession.md @@ -570,7 +570,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession) +- [Get-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md index 48e025f3102a2..4817b072567a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReport.md @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport) +- [Get-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index ae29261c18065..6b3a0266b5552 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -629,7 +629,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord) +- [Get-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md index ba69a7b9d6e5b..c1ce5c9305000 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount) +- [Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md index 1fe1b7466456d..9131cd7a9e38f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionAttendanceReportCount.md @@ -379,7 +379,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount) +- [Get-MgVirtualEventSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md index 306798544ffde..f6bfefd3e0b26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventSessionCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount) +- [Get-MgVirtualEventSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md index 3e363b168827f..1f2d53a994351 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhall.md @@ -565,8 +565,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall) -- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md index 4548e426914f4..50db587c4d7cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserIdAndRole.md @@ -520,8 +520,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole) -- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhallByUserIdAndRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuseridandrole) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md index 66b859000eb51..930ef478a09fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallByUserRole.md @@ -511,8 +511,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole) -- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhallByUserRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallbyuserrole) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md index 0d81ab5119c79..aa2a30af63859 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount) +- [Get-MgVirtualEventTownhallCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md index 3352cb13be916..c1713bf4193f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenter.md @@ -593,9 +593,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter) -- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresenter) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md index 800567c2ecc50..29dd18321bc95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallPresenterCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount) +- [Get-MgVirtualEventTownhallPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md index 75a235f27a175..de7c0e18b65bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSession.md @@ -578,7 +578,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession) +- [Get-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md index 0707ec1e97596..3bc34619eda45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReport.md @@ -614,9 +614,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport) -- [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereport) +- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 006d887fa3036..2c4d849541db5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -643,8 +643,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord) -- [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) +- [Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecord) +- [Graph API Reference](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md index 08e047fa78c2d..63bfbea1a20e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount.md @@ -402,7 +402,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount) +- [Get-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md index f844c9dbbb506..85d63ae5be051 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionAttendanceReportCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount) +- [Get-MgVirtualEventTownhallSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md index dd8d7d54ba723..5aa5019e8def6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventTownhallSessionCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount) +- [Get-MgVirtualEventTownhallSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventtownhallsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md index 4e17f3a3a0c89..a302a36c7b460 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinar.md @@ -565,9 +565,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinar) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md index e4f39f7510277..0bccf09d5848a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserIdAndRole.md @@ -520,8 +520,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarByUserIdAndRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuseridandrole) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md index 9539ff420a15d..dfe7febae170e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarByUserRole.md @@ -511,8 +511,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarByUserRole](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarbyuserrole) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md index 641f52a7c3528..ed07c57a132e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount) +- [Get-MgVirtualEventWebinarCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md index 0a1299fb5c034..a1dd7d76fc10f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenter.md @@ -570,7 +570,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter) +- [Get-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md index f28d57f4e6efc..dfc49699af3e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarPresenterCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount) +- [Get-MgVirtualEventWebinarPresenterCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarpresentercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md index b604c0e92d5da..6fae8cb7836eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistration.md @@ -591,9 +591,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration) -- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md index 5e851f856f6b8..ca87cd376cdc3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByEmail.md @@ -382,8 +382,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail) -- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyemail) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md index 0ec54d36d74d9..1b61654414aef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationByUserId.md @@ -382,8 +382,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid) -- [](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationbyuserid) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md index ebb00ed055337..d55648da8e5ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfiguration.md @@ -374,8 +374,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfiguration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index a647d47e8482e..df12b9dcda90a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -585,8 +585,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion) -- [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md index a3413efcdc56c..7472c9ca9f90b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount.md @@ -359,7 +359,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount) +- [Get-MgVirtualEventWebinarRegistrationConfigurationQuestionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationconfigurationquestioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md index 199f353404c4f..3c61b0069b7cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationCount.md @@ -357,7 +357,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount) +- [Get-MgVirtualEventWebinarRegistrationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md index cd019a474f9de..1c2ae2a5c64f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSession.md @@ -612,8 +612,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession) -- [](https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarRegistrationSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md index 3ef3ae557febb..dccccc64407ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarRegistrationSessionCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount) +- [Get-MgVirtualEventWebinarRegistrationSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarregistrationsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md index 34ae34836dcc0..bad7a99b5f495 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSession.md @@ -593,9 +593,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession) -- [](https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md index 19e3b37fb2c39..2236c86f6c409 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReport.md @@ -614,9 +614,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport) -- [](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereport) +- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index bd40e4872f269..532606046681c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -642,8 +642,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord) -- [](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) +- [Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecord) +- [Graph API Reference](https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md index 57407c3bdc0f9..64329e3eb4266 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount.md @@ -402,7 +402,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount) +- [Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportattendancerecordcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md index aed87c54e9925..307be9ffa79da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionAttendanceReportCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount) +- [Get-MgVirtualEventWebinarSessionAttendanceReportCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessionattendancereportcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md index 4a49c374c0f2e..a51cb0e311756 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Get-MgVirtualEventWebinarSessionCount.md @@ -365,7 +365,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount) +- [Get-MgVirtualEventWebinarSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/get-mgvirtualeventwebinarsessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md index ef00fe035a936..5882503b470c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusiness.md @@ -1427,8 +1427,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-bookingbusinesses?view=graph-rest-1.0) +- [New-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-bookingbusinesses?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md index a6b3548ebb3c9..8deef4266e82c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessAppointment.md @@ -1472,8 +1472,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0) +- [New-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessappointment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md index 8020fb5f8c3a3..ad151c92c85fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCalendarView.md @@ -1472,7 +1472,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview) +- [New-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md index 19e8190c06958..0e4453d6113ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomQuestion.md @@ -664,8 +664,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customquestions?view=graph-rest-1.0) +- [New-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-customquestions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md index f75b57eae67f2..cd23287b4c9e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessCustomer.md @@ -532,8 +532,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-customers?view=graph-rest-1.0) +- [New-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinesscustomer) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-customers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md index ebe37acb2624e..c2e86571979c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessService.md @@ -1304,8 +1304,8 @@ Use the email address specified in the email property of the bookingBusiness ent ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-services?view=graph-rest-1.0) +- [New-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessservice) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-services?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md index 4a2e10f478d1d..d52a595883b97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingBusinessStaffMember.md @@ -576,8 +576,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-post-staffmembers?view=graph-rest-1.0) +- [New-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingbusinessstaffmember) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-post-staffmembers?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md index 1675f7630a9b1..e2184101a3455 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgBookingCurrency.md @@ -389,7 +389,7 @@ For example, the currency symbol for the US dollar and for the Australian dollar ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency) +- [New-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md index 3bba24c21a5e0..5184b1dccc1cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEvent.md @@ -954,7 +954,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent) +- [New-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md index 8f5224232a04f..f086e0c8d1441 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventPresenter.md @@ -609,7 +609,7 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter) +- [New-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md index 622d710b7794a..7efcc7d37d587 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSession.md @@ -1737,7 +1737,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession) +- [New-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md index 3af0e07e87309..1edd004467a63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReport.md @@ -739,7 +739,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport) +- [New-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 60e9be3e47389..18609585543b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -782,7 +782,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord) +- [New-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md index 4217817c7beab..3f3f5968fe69e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhall.md @@ -1069,8 +1069,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall) -- [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-1.0) +- [New-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md index 90bd6d62a4e44..5a0effaa819e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallPresenter.md @@ -650,8 +650,8 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter) -- [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) +- [New-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallpresenter) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md index e100b77a83472..5615a3ab71fa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSession.md @@ -1739,7 +1739,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession) +- [New-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md index da132f7113f04..c26efde093038 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReport.md @@ -739,7 +739,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport) +- [New-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 5965622d431d0..6bb9dbcdd72db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -783,7 +783,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord) +- [New-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md index 39284c5cd159a..bbfc0fd9c9d04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinar.md @@ -1272,8 +1272,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar) -- [](https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-1.0) +- [New-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinar) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md index 6ae7a99ef4228..44714c3c546d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarPresenter.md @@ -650,8 +650,8 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter) -- [](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) +- [New-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarpresenter) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md index 78d5fe76f7589..8b239376c563d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistration.md @@ -1236,8 +1236,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-1.0) +- [New-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistration) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 3143a35af4f4f..4179bc5439f4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -580,8 +580,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion) -- [](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-1.0) +- [New-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarregistrationconfigurationquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md index 58e9ef7f2b410..4605ff3d29114 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSession.md @@ -1738,7 +1738,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession) +- [New-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md index 28901c06ecc4c..929978f83b239 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReport.md @@ -739,7 +739,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport) +- [New-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 3548c965626ef..a941138a88479 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -782,7 +782,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord) +- [New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/new-mgvirtualeventwebinarsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md index a67131928b208..fa41981eccc08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgBookingBusiness.md @@ -403,8 +403,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0) +- [Publish-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md index 45f8ffb7d2332..f2dba38175382 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Publish-MgVirtualEvent.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent) +- [Publish-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/publish-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md index 3c5af2f43a761..640bff4cb9fb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusiness.md @@ -401,8 +401,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md index 135e7a080f0a4..080a88216978b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessAppointment.md @@ -443,8 +443,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment) -- [](https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessappointment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md index a13125fb2e821..26de1d06e9cc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCalendarView.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview) +- [Remove-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md index 5dfa7d99aef3f..0757f1b19955d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomQuestion.md @@ -443,8 +443,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion) -- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md index eb2fcb82f8f75..d0cb82c2b1bc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessCustomer.md @@ -443,8 +443,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer) -- [](https://learn.microsoft.com/graph/api/bookingcustomer-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinesscustomer) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md index 8c3aa7f0e0382..2fd19b67f53dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessService.md @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice) -- [](https://learn.microsoft.com/graph/api/bookingservice-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessservice) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md index feb942e600dfc..0f3cbbd1c1a55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingBusinessStaffMember.md @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember) -- [](https://learn.microsoft.com/graph/api/bookingstaffmember-delete?view=graph-rest-1.0) +- [Remove-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingbusinessstaffmember) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md index cb3356bc8b502..492f7e410c865 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgBookingCurrency.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency) +- [Remove-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md index 33e3282758026..de5fcc0db121b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEvent.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent) +- [Remove-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md index 207719b891652..7a26440cad354 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventPresenter.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter) +- [Remove-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md index 3851b59e6d3a5..e98c0ca2abb3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSession.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession) +- [Remove-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md index 08cf4040e5dbd..71ff55bac2590 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReport.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport) +- [Remove-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index 3e23915fe209e..c2f5d2280062a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -465,7 +465,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord) +- [Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md index ba6a51f54e3b4..69b6eea960262 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhall.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall) +- [Remove-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhall) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md index 11a75d6411a40..ab7eb09c30eed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallPresenter.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter) -- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-1.0) +- [Remove-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallpresenter) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md index 579d690eba146..616843a86714f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSession.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession) +- [Remove-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md index 4e27403995453..9fd098cefe74c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReport.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport) +- [Remove-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index 7fce1f9bd6806..5d2c5706fcd9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -467,7 +467,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord) +- [Remove-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md index 738b0b761b426..2bba8dfa38e8c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinar.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar) +- [Remove-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md index 3f3fb58e8224c..303af63762f4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarPresenter.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter) +- [Remove-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md index dbf8b36d955f0..95329f46c4e9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistration.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration) +- [Remove-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md index 71c135fb8e899..508fa404aab4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByEmail.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail) +- [Remove-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md index 7612cd03e326e..47b8ab551e8c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationByUserId.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid) +- [Remove-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationbyuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md index a791fe9068784..ecc313e56b750 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfiguration.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration) +- [Remove-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index 60b9ec54479a1..0526331ac642b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion) -- [](https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-1.0) +- [Remove-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarregistrationconfigurationquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md index 8562b0e85930b..1e8ce6a2daec3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSession.md @@ -422,7 +422,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession) +- [Remove-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md index 662df1a224b3e..caba9fe161bf1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReport.md @@ -444,7 +444,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport) +- [Remove-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index 2a16800aee861..197200ea4fbc3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -465,7 +465,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord) +- [Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/remove-mgvirtualeventwebinarsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md index b6afc97aebffd..2ebac119efff3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Set-MgVirtualEventExternalEventInformation.md @@ -504,7 +504,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation) +- [Set-MgVirtualEventExternalEventInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/set-mgvirtualeventexternaleventinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md index f1983e06c2410..e687f9a772ae7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessAppointment.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment) -- [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) +- [Stop-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinessappointment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md index e9c53c7fcff8d..2f9747ae142ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgBookingBusinessCalendarView.md @@ -531,8 +531,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview) -- [](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) +- [Stop-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgbookingbusinesscalendarview) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md index 3b688509d1434..6c22d64377837 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEvent.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent) +- [Stop-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md index afa42e865a487..054f516854845 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistration.md @@ -410,7 +410,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration) +- [Stop-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md index 36204e40a842c..89916e7b163ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationEmail.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail) +- [Stop-MgVirtualEventWebinarRegistrationEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md index 164fd18cc3417..67264d22ac7b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Stop-MgVirtualEventWebinarRegistrationUserId.md @@ -401,7 +401,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid) +- [Stop-MgVirtualEventWebinarRegistrationUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/stop-mgvirtualeventwebinarregistrationuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md index 34843bc514ea8..ab17d6804d3c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Unpublish-MgBookingBusiness.md @@ -403,8 +403,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0) +- [Unpublish-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/unpublish-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md index b7538679459b8..5c88da097459d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusiness.md @@ -1670,8 +1670,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness) -- [](https://learn.microsoft.com/graph/api/bookingbusiness-update?view=graph-rest-1.0) +- [Update-MgBookingBusiness](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusiness) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingbusiness-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md index 9824221b5f5de..a540610cf40f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessAppointment.md @@ -1557,8 +1557,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment) -- [](https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-1.0) +- [Update-MgBookingBusinessAppointment](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessappointment) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md index 06356edbe0a70..1a79a581aa366 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCalendarView.md @@ -1491,7 +1491,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview) +- [Update-MgBookingBusinessCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md index 0c772702b0547..140fb3f5533a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomQuestion.md @@ -691,8 +691,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion) -- [](https://learn.microsoft.com/graph/api/bookingcustomquestion-update?view=graph-rest-1.0) +- [Update-MgBookingBusinessCustomQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomquestion) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomquestion-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md index 3f6a05db8e6dc..2fb9fdc5bae57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessCustomer.md @@ -531,8 +531,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer) -- [](https://learn.microsoft.com/graph/api/bookingcustomer-update?view=graph-rest-1.0) +- [Update-MgBookingBusinessCustomer](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinesscustomer) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingcustomer-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md index 79ab2d84dc9a7..5853902d4f37e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessService.md @@ -1334,8 +1334,8 @@ Use the email address specified in the email property of the bookingBusiness ent ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice) -- [](https://learn.microsoft.com/graph/api/bookingservice-update?view=graph-rest-1.0) +- [Update-MgBookingBusinessService](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessservice) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingservice-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md index f5582777b7941..be8bc12953ece 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingBusinessStaffMember.md @@ -512,8 +512,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember) -- [](https://learn.microsoft.com/graph/api/bookingstaffmember-update?view=graph-rest-1.0) +- [Update-MgBookingBusinessStaffMember](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingbusinessstaffmember) +- [Graph API Reference](https://learn.microsoft.com/graph/api/bookingstaffmember-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md index 1309d53dd4e85..dd0e8b2f6417c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgBookingCurrency.md @@ -514,7 +514,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency) +- [Update-MgBookingCurrency](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgbookingcurrency) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md index f47e9b6421bfc..6aafd82253fa9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEvent.md @@ -1138,7 +1138,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent) +- [Update-MgVirtualEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md index 35508c24eda5e..91cb7df8c29e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventPresenter.md @@ -636,7 +636,7 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter) +- [Update-MgVirtualEventPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md index b9eef6dd6ad36..d91b11194e10d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSession.md @@ -1765,7 +1765,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession) +- [Update-MgVirtualEventSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md index 442a39ff378a0..51eeece7d4df1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReport.md @@ -767,7 +767,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport) +- [Update-MgVirtualEventSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md index a4ae8b99569bd..39b17cc760828 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventSessionAttendanceReportAttendanceRecord.md @@ -809,7 +809,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord) +- [Update-MgVirtualEventSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md index f60496a5e6c95..e6aaee0ece6a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhall.md @@ -1307,8 +1307,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall) -- [](https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-1.0) +- [Update-MgVirtualEventTownhall](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhall) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md index 952511e80a365..01cb09d6c8594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallPresenter.md @@ -637,7 +637,7 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter) +- [Update-MgVirtualEventTownhallPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallpresenter) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md index 94071101ce4c1..6c17237ca19c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSession.md @@ -1766,7 +1766,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession) +- [Update-MgVirtualEventTownhallSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md index dbea3387c26d7..7b0e148061077 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReport.md @@ -768,7 +768,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport) +- [Update-MgVirtualEventTownhallSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md index bfc4dac97d61f..a30a4a0506304 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord.md @@ -811,7 +811,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord) +- [Update-MgVirtualEventTownhallSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventtownhallsessionattendancereportattendancerecord) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md index 0f620dffa36d0..e6000e62660e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinar.md @@ -1511,8 +1511,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar) -- [](https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-1.0) +- [Update-MgVirtualEventWebinar](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinar) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md index dfe29defaddd9..476a201a436e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarPresenter.md @@ -665,8 +665,8 @@ PRESENTERDETAILS ``: virtualEventPr ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter) -- [](https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-1.0) +- [Update-MgVirtualEventWebinarPresenter](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarpresenter) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md index 2aa3bead04fb2..8ce644bdf6c20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistration.md @@ -1155,7 +1155,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration) +- [Update-MgVirtualEventWebinarRegistration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md index d38fe5b7ec9c2..67649c0f36e68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByEmail.md @@ -1155,7 +1155,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail) +- [Update-MgVirtualEventWebinarRegistrationByEmail](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyemail) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md index c08955e2e6320..c4b96cb8837ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationByUserId.md @@ -1155,7 +1155,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid) +- [Update-MgVirtualEventWebinarRegistrationByUserId](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationbyuserid) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md index b9d3f1d8c9b88..31eea7845380d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfiguration.md @@ -642,7 +642,7 @@ The default value is false. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration) +- [Update-MgVirtualEventWebinarRegistrationConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md index a373b041def9e..db1575bd680ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarRegistrationConfigurationQuestion.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion) +- [Update-MgVirtualEventWebinarRegistrationConfigurationQuestion](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarregistrationconfigurationquestion) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md index ae29405240dd5..b71da8241d317 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSession.md @@ -1766,7 +1766,7 @@ WATERMARKPROTECTION ``: watermarkProte ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession) +- [Update-MgVirtualEventWebinarSession](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md index 6130fab9660fc..5315647f95a79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReport.md @@ -767,7 +767,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport) +- [Update-MgVirtualEventWebinarSessionAttendanceReport](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md index fc877ba2e998e..0b5775df37e99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord.md @@ -809,7 +809,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord) +- [Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord](https://learn.microsoft.com/powershell/module/microsoft.graph.bookings/update-mgvirtualeventwebinarsessionattendancereportattendancerecord)