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 2dc349010aeee5a12cbe697c297a488bfc451b51 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:24 +0000 Subject: [PATCH 10/17] Updated markdown help --- .../Get-MgGroupCalendar.md | 46 +++---- .../Get-MgGroupCalendarEvent.md | 52 ++------ .../Get-MgGroupCalendarPermission.md | 49 +++---- .../Get-MgGroupCalendarPermissionCount.md | 46 +++---- .../Get-MgGroupCalendarSchedule.md | 60 +++------ .../Get-MgGroupCalendarView.md | 41 ++---- .../Get-MgGroupEvent.md | 56 ++------ .../Get-MgGroupEventAttachment.md | 49 +++---- .../Get-MgGroupEventAttachmentCount.md | 50 ++----- .../Get-MgGroupEventCalendar.md | 46 +++---- .../Get-MgGroupEventCount.md | 50 ++----- .../Get-MgGroupEventDelta.md | 51 ++------ .../Get-MgGroupEventExtension.md | 46 ++----- .../Get-MgGroupEventExtensionCount.md | 46 +++---- .../Get-MgGroupEventInstance.md | 46 ++----- .../Get-MgGroupEventInstanceDelta.md | 48 +++---- .../Get-MgPlaceAsBuilding.md | 53 +++----- .../Get-MgPlaceAsBuildingCheck.md | 48 +++---- .../Get-MgPlaceAsBuildingCheckInCount.md | 46 +++---- .../Get-MgPlaceAsBuildingMap.md | 46 ++----- .../Get-MgPlaceAsBuildingMapFootprint.md | 49 +++---- .../Get-MgPlaceAsBuildingMapFootprintCount.md | 46 +++---- .../Get-MgPlaceAsBuildingMapLevel.md | 49 +++---- .../Get-MgPlaceAsBuildingMapLevelCount.md | 46 +++---- .../Get-MgPlaceAsBuildingMapLevelFixture.md | 48 ++----- ...t-MgPlaceAsBuildingMapLevelFixtureCount.md | 46 +++---- .../Get-MgPlaceAsBuildingMapLevelSection.md | 48 ++----- ...t-MgPlaceAsBuildingMapLevelSectionCount.md | 46 +++---- .../Get-MgPlaceAsBuildingMapLevelUnit.md | 48 ++----- .../Get-MgPlaceAsBuildingMapLevelUnitCount.md | 46 +++---- .../Get-MgPlaceAsDesk.md | 53 +++----- .../Get-MgPlaceAsDeskCheck.md | 48 +++---- .../Get-MgPlaceAsDeskCheckInCount.md | 46 +++---- .../Get-MgPlaceAsFloor.md | 53 +++----- .../Get-MgPlaceAsFloorCheck.md | 48 +++---- .../Get-MgPlaceAsFloorCheckInCount.md | 46 +++---- .../Get-MgPlaceAsRoom.md | 50 ++----- .../Get-MgPlaceAsRoomCheck.md | 48 +++---- .../Get-MgPlaceAsRoomCheckInCount.md | 46 +++---- .../Get-MgPlaceAsRoomList.md | 48 +++---- .../Get-MgPlaceAsRoomListCheck.md | 48 +++---- .../Get-MgPlaceAsRoomListCheckInCount.md | 46 +++---- .../Get-MgPlaceAsRoomListRoom.md | 48 +++---- .../Get-MgPlaceAsRoomListRoomCheck.md | 48 +++---- .../Get-MgPlaceAsRoomListRoomCheckInCount.md | 46 +++---- .../Get-MgPlaceAsRoomListRoomCount.md | 46 +++---- .../Get-MgPlaceAsRoomListWorkspace.md | 48 +++---- .../Get-MgPlaceAsRoomListWorkspaceCheck.md | 47 +++---- ...-MgPlaceAsRoomListWorkspaceCheckInCount.md | 46 +++---- .../Get-MgPlaceAsRoomListWorkspaceCount.md | 46 +++---- .../Get-MgPlaceAsSection.md | 53 +++----- .../Get-MgPlaceAsSectionCheck.md | 48 +++---- .../Get-MgPlaceAsSectionCheckInCount.md | 46 +++---- .../Get-MgPlaceAsWorkspace.md | 53 +++----- .../Get-MgPlaceAsWorkspaceCheck.md | 48 +++---- .../Get-MgPlaceAsWorkspaceCheckInCount.md | 46 +++---- .../Get-MgPlaceCheck.md | 49 +++---- .../Get-MgPlaceCheckInCount.md | 46 +++---- .../Get-MgPlaceCount.md | 42 ++---- .../Get-MgPlaceCountAsBuilding.md | 46 ++----- .../Get-MgPlaceCountAsDesk.md | 46 ++----- .../Get-MgPlaceCountAsFloor.md | 46 ++----- .../Get-MgPlaceCountAsRoom.md | 46 ++----- .../Get-MgPlaceCountAsRoomList.md | 46 ++----- .../Get-MgPlaceCountAsSection.md | 46 ++----- .../Get-MgPlaceCountAsWorkspace.md | 46 ++----- .../Get-MgUserCalendar.md | 46 ++----- .../Get-MgUserCalendarCount.md | 50 ++----- .../Get-MgUserCalendarEvent.md | 46 ++----- .../Get-MgUserCalendarGroup.md | 54 ++------ .../Get-MgUserCalendarGroupCalendar.md | 44 +------ .../Get-MgUserCalendarGroupCount.md | 50 ++----- .../Get-MgUserCalendarPermission.md | 54 ++------ .../Get-MgUserCalendarPermissionCount.md | 50 +++---- .../Get-MgUserCalendarView.md | 48 +------ .../Get-MgUserDefaultCalendar.md | 44 +------ .../Get-MgUserDefaultCalendarEvent.md | 46 ++----- .../Get-MgUserEvent.md | 61 ++------- .../Get-MgUserEventAttachment.md | 46 ++----- .../Get-MgUserEventAttachmentCount.md | 50 ++----- .../Get-MgUserEventCalendar.md | 46 +++---- .../Get-MgUserEventCount.md | 50 ++----- .../Get-MgUserEventDelta.md | 51 ++------ .../Get-MgUserEventExtension.md | 49 +++---- .../Get-MgUserEventExtensionCount.md | 46 +++---- .../Get-MgUserEventInstance.md | 48 +------ .../Get-MgUserEventInstanceDelta.md | 48 +++---- .../Invoke-MgAcceptGroupEvent.md | 56 +++----- .../Invoke-MgAcceptGroupEventTentatively.md | 58 +++------ .../Invoke-MgAcceptUserEvent.md | 60 ++------- .../Invoke-MgAcceptUserEventTentatively.md | 65 ++------- .../Invoke-MgCalendarGroupCalendar.md | 46 +++---- ...UserCalendarAllowedCalendarSharingRoles.md | 50 +++---- .../Invoke-MgDeclineGroupEvent.md | 58 +++------ .../Invoke-MgDeclineUserEvent.md | 65 ++------- .../Invoke-MgDescendantPlace.md | 50 ++----- .../Invoke-MgDismissGroupEventReminder.md | 46 ++----- .../Invoke-MgDismissUserEventReminder.md | 50 +------ .../Invoke-MgForwardGroupEvent.md | 68 +++------- .../Invoke-MgForwardUserEvent.md | 68 ++-------- .../Invoke-MgSnoozeGroupEventReminder.md | 54 +++----- .../Invoke-MgSnoozeUserEventReminder.md | 58 ++------- .../Microsoft.Graph.Calendar.md | 21 +-- .../New-MgGroupCalendarEvent.md | 66 ++++------ .../New-MgGroupCalendarPermission.md | 53 +++----- .../New-MgGroupEvent.md | 64 +++------ .../New-MgGroupEventAttachment.md | 54 ++------ ...New-MgGroupEventAttachmentUploadSession.md | 54 +++----- .../New-MgGroupEventExtension.md | 44 +------ .../Microsoft.Graph.Calendar/New-MgPlace.md | 123 ++++++++++++------ .../New-MgPlaceAsBuildingCheck.md | 49 +++---- .../New-MgPlaceAsBuildingMapFootprint.md | 48 +++---- .../New-MgPlaceAsBuildingMapLevel.md | 50 +++---- .../New-MgPlaceAsBuildingMapLevelFixture.md | 51 +++----- .../New-MgPlaceAsBuildingMapLevelSection.md | 51 +++----- .../New-MgPlaceAsBuildingMapLevelUnit.md | 51 +++----- .../New-MgPlaceAsDeskCheck.md | 48 ++----- .../New-MgPlaceAsFloorCheck.md | 49 +++---- .../New-MgPlaceAsRoomCheck.md | 48 ++----- .../New-MgPlaceAsRoomListCheck.md | 49 +++---- .../New-MgPlaceAsRoomListRoom.md | 53 +++----- .../New-MgPlaceAsRoomListRoomCheck.md | 50 +++---- .../New-MgPlaceAsRoomListWorkspace.md | 54 +++----- .../New-MgPlaceAsRoomListWorkspaceCheck.md | 50 +++---- .../New-MgPlaceAsSectionCheck.md | 49 +++---- .../New-MgPlaceAsWorkspaceCheck.md | 49 +++---- .../New-MgPlaceCheck.md | 54 +++----- .../New-MgUserCalendar.md | 58 ++------- .../New-MgUserCalendarEvent.md | 79 +++-------- .../New-MgUserCalendarGroup.md | 55 +------- .../New-MgUserCalendarGroupCalendar.md | 60 ++------- .../New-MgUserCalendarPermission.md | 61 ++++----- .../New-MgUserDefaultCalendarEvent.md | 71 ++++------ .../New-MgUserEvent.md | 86 +++--------- .../New-MgUserEventAttachment.md | 63 ++------- .../New-MgUserEventAttachmentUploadSession.md | 58 +++------ .../New-MgUserEventExtension.md | 46 ++----- .../Remove-MgGroupCalendarEvent.md | 48 ++----- .../Remove-MgGroupCalendarPermanent.md | 44 ++----- .../Remove-MgGroupCalendarPermission.md | 48 ++----- .../Remove-MgGroupEvent.md | 50 +------ .../Remove-MgGroupEventAttachment.md | 44 ++----- .../Remove-MgGroupEventExtension.md | 44 ++----- .../Remove-MgGroupEventPermanent.md | 44 ++----- .../Remove-MgPlace.md | 48 ++----- .../Remove-MgPlaceAsBuildingCheck.md | 44 ++----- .../Remove-MgPlaceAsBuildingMap.md | 44 ++----- .../Remove-MgPlaceAsBuildingMapFootprint.md | 44 ++----- .../Remove-MgPlaceAsBuildingMapLevel.md | 44 ++----- ...Remove-MgPlaceAsBuildingMapLevelFixture.md | 44 ++----- ...Remove-MgPlaceAsBuildingMapLevelSection.md | 44 ++----- .../Remove-MgPlaceAsBuildingMapLevelUnit.md | 44 ++----- .../Remove-MgPlaceAsDeskCheck.md | 44 ++----- .../Remove-MgPlaceAsFloorCheck.md | 44 ++----- .../Remove-MgPlaceAsRoomCheck.md | 44 ++----- .../Remove-MgPlaceAsRoomListCheck.md | 44 ++----- .../Remove-MgPlaceAsRoomListRoom.md | 44 ++----- .../Remove-MgPlaceAsRoomListRoomCheck.md | 44 ++----- .../Remove-MgPlaceAsRoomListWorkspace.md | 44 ++----- .../Remove-MgPlaceAsRoomListWorkspaceCheck.md | 44 ++----- .../Remove-MgPlaceAsSectionCheck.md | 44 ++----- .../Remove-MgPlaceAsWorkspaceCheck.md | 44 ++----- .../Remove-MgPlaceCheck.md | 44 ++----- .../Remove-MgUserCalendarGroup.md | 50 +------ .../Remove-MgUserCalendarPermanent.md | 50 +------ .../Remove-MgUserCalendarPermission.md | 52 +------- .../Remove-MgUserEvent.md | 50 +------ .../Remove-MgUserEventAttachment.md | 42 +----- .../Remove-MgUserEventExtension.md | 44 ++----- .../Remove-MgUserEventPermanent.md | 48 ++----- .../Stop-MgGroupEvent.md | 70 +++------- .../Stop-MgUserEvent.md | 70 ++-------- .../Update-MgGroupCalendarEvent.md | 73 +++-------- .../Update-MgGroupCalendarPermission.md | 54 +++----- .../Update-MgGroupEvent.md | 70 +++------- .../Update-MgGroupEventExtension.md | 47 ++----- .../Update-MgPlace.md | 118 ++++++++++------- .../Update-MgPlaceAsBuildingCheck.md | 50 +++---- .../Update-MgPlaceAsBuildingMap.md | 51 +++----- .../Update-MgPlaceAsBuildingMapFootprint.md | 48 +++---- .../Update-MgPlaceAsBuildingMapLevel.md | 51 +++----- ...Update-MgPlaceAsBuildingMapLevelFixture.md | 67 +++++----- ...Update-MgPlaceAsBuildingMapLevelSection.md | 50 +++---- .../Update-MgPlaceAsBuildingMapLevelUnit.md | 66 +++++----- .../Update-MgPlaceAsDeskCheck.md | 50 +++---- .../Update-MgPlaceAsFloorCheck.md | 50 +++---- .../Update-MgPlaceAsRoomCheck.md | 50 +++---- .../Update-MgPlaceAsRoomListCheck.md | 50 +++---- .../Update-MgPlaceAsRoomListRoom.md | 53 +++----- .../Update-MgPlaceAsRoomListRoomCheck.md | 51 +++----- .../Update-MgPlaceAsRoomListWorkspace.md | 55 +++----- .../Update-MgPlaceAsRoomListWorkspaceCheck.md | 50 +++---- .../Update-MgPlaceAsSectionCheck.md | 50 +++---- .../Update-MgPlaceAsWorkspaceCheck.md | 50 +++---- .../Update-MgPlaceCheck.md | 49 +++---- .../Update-MgUserCalendarGroup.md | 57 ++------ .../Update-MgUserCalendarPermission.md | 60 +++------ .../Update-MgUserEvent.md | 72 +++------- .../Update-MgUserEventExtension.md | 47 ++----- 199 files changed, 2905 insertions(+), 7275 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md index ccb8255deb522..1369dfced9185 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendar --- @@ -16,9 +16,6 @@ title: Get-MgGroupCalendar The group's calendar. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendar?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgGroupCalendar -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgGroupCalendar -GroupId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, The group's calendar. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -360,27 +367,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 42448fdd22237..0fa90f108b59c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendarEvent --- @@ -17,9 +17,6 @@ The events in the calendar. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgGroupCalendarEvent -GroupId [-ExpandProperty ] [-Proper [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgGroupCalendarEvent -GroupId [-ExpandProperty ] [-Proper Get-MgGroupCalendarEvent -EventId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgGroupCalendarEvent -EventId -GroupId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,13 +59,15 @@ The events in the calendar. Navigation property. Read-only. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Group.ReadWrite.All, Group.Read.All, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -557,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -580,27 +579,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md index 5705c5c45e938..6527d9bdc9bf9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendarPermission --- @@ -15,9 +15,6 @@ title: Get-MgGroupCalendarPermission The permissions of the users with whom the calendar is shared. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgGroupCalendarPermission -GroupId [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgGroupCalendarPermission -CalendarPermissionId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgGroupCalendarPermission -CalendarPermissionId -GroupId Get-MgGroupCalendarPermission -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 permissions of the users with whom the calendar is shared. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,28 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md index 1d38291f67bba..488b13a6872bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendarPermissionCount --- @@ -15,9 +15,6 @@ title: Get-MgGroupCalendarPermissionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarPermissionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarPermissionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgGroupCalendarPermissionCount -GroupId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgGroupCalendarPermissionCount -GroupId [-Filter ] [-Search Get-MgGroupCalendarPermissionCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupCalendarPermissionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index cf9c0e3d4fb4b..3fbce2e9e76d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendarSchedule --- @@ -15,9 +15,6 @@ title: Get-MgGroupCalendarSchedule Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarSchedule](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarSchedule?view=graph-powershell-beta) - ## SYNTAX ### GetExpanded (Default) @@ -29,7 +26,6 @@ Get-MgGroupCalendarSchedule -GroupId [-ResponseHeadersVariable [-StartTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +36,6 @@ Get-MgGroupCalendarSchedule -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +47,6 @@ Get-MgGroupCalendarSchedule -InputObject [-ResponseHeadersVa [-StartTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -63,7 +57,6 @@ Get-MgGroupCalendarSchedule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +68,16 @@ This cmdlet has the following aliases, Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -106,7 +109,7 @@ HelpMessage: '' ### -AvailabilityViewInterval - +. ```yaml Type: System.Int32 @@ -133,7 +136,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -435,7 +438,7 @@ HelpMessage: '' ### -Schedules - +. ```yaml Type: System.String[] @@ -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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AvailabilityViewInterval ]: [EndTime ]: dateTimeTimeZone @@ -555,13 +558,13 @@ See below for more possible values. [Schedules ]: [StartTime ]: dateTimeTimeZone -ENDTIME ``: dateTimeTimeZone +ENDTIME : 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -581,7 +584,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -STARTTIME ``: dateTimeTimeZone +STARTTIME : 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'. @@ -590,28 +593,5 @@ See below for more possible values. ## RELATED LINKS -- [Get-MgGroupCalendarSchedule](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule) +- [](https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md index cbb6fca171a4b..b897f482c7b6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupCalendarView --- @@ -17,9 +17,6 @@ The calendar view for the calendar. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarView](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarView?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgGroupCalendarView -GroupId -EndDateTime -StartDateTime < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -45,6 +41,16 @@ The calendar view for the calendar. Navigation property. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,27 +526,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgGroupCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index dbd39ac5a3f29..54f81ee1c0cf4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEvent --- @@ -15,9 +15,6 @@ title: Get-MgGroupEvent Get an event object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgGroupEvent -GroupId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgGroupEvent -GroupId [-ExpandProperty ] [-Property -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgGroupEvent -EventId -GroupId [-ExpandProperty Get-MgGroupEvent -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 an event object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Group.ReadWrite.All, Group.Read.All, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId -``` -This example shows how to use the Get-MgGroupEvent Cmdlet. - - ## PARAMETERS ### -All @@ -566,7 +550,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -589,28 +573,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent) +- [](https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md index eb57834e93092..75dc6089df4d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventAttachment --- @@ -18,9 +18,6 @@ Navigation property. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgGroupEventAttachment -EventId -GroupId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgGroupEventAttachment -AttachmentId -EventId -GroupId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgGroupEventAttachment -AttachmentId -EventId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,6 +62,16 @@ Navigation property. Read-only. Nullable. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -579,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -602,28 +609,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index 09e71ee78a24c..36203460497c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventAttachmentCount --- @@ -15,9 +15,6 @@ title: Get-MgGroupEventAttachmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventAttachmentCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventAttachmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgGroupEventAttachmentCount -EventId -GroupId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgGroupEventAttachmentCount -EventId -GroupId [-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) | Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.Read, | -| Application | Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -362,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventAttachmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md index 6f6a66f1e9339..5d3d0aa12ef67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventCalendar --- @@ -17,9 +17,6 @@ The calendar that contains the event. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventCalendar?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Read-only. Get-MgGroupEventCalendar -EventId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgGroupEventCalendar -EventId -GroupId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ The calendar that contains the event. Navigation property. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -360,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -383,27 +390,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index 92373663f442a..6e98b8f1eaaae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventCount --- @@ -15,9 +15,6 @@ title: Get-MgGroupEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgGroupEventCount -GroupId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgGroupEventCount -GroupId [-Filter ] [-Search ] Get-MgGroupEventCount -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) | Group.Read.All, Group.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Not supported | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index a5ecb8f2d8172..176bcd2e7ec82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventDelta --- @@ -18,9 +18,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -32,7 +29,6 @@ Get-MgGroupEventDelta -GroupId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -43,7 +39,7 @@ Get-MgGroupEventDelta -InputObject -EndDateTime -St [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,13 +54,15 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | -| Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | -| Application | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | +{{ Add code here }} ## PARAMETERS @@ -591,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -614,28 +612,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta) +- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md index 2a6158eb9c159..8d5f72d9bfaf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventExtension --- @@ -17,9 +17,6 @@ Get an open extension (openTypeExtension object) identified by name or fully qua The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventExtension?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgGroupEventExtension -EventId -GroupId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgGroupEventExtension -EventId -ExtensionId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,18 +61,13 @@ The table in the Permissions section lists the resources that support open exten The following table lists the three scenarios where you can get an open extension from a supported resource instance. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId -``` -This example shows how to use the Get-MgGroupEventExtension Cmdlet. - - ## PARAMETERS ### -All @@ -594,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -617,27 +609,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension) -- [Graph API Reference](https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension) +- [](https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md index 7bde31413d77a..344f718aea472 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventExtensionCount --- @@ -15,9 +15,6 @@ title: Get-MgGroupEventExtensionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventExtensionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventExtensionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgGroupEventExtensionCount -EventId -GroupId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgGroupEventExtensionCount -EventId -GroupId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventExtensionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index 9e927c2603087..d4aefd3a196e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventInstance --- @@ -19,9 +19,6 @@ Navigation property. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventInstance](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventInstance?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,7 @@ Get-MgGroupEventInstance -EventId -GroupId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -49,13 +46,15 @@ Navigation property. Read-only. Nullable. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -553,27 +552,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgGroupEventInstance](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md index 2a86d36ae5d85..ff8ed6178ac9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgGroupEventInstanceDelta --- @@ -18,9 +18,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventInstanceDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventInstanceDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -32,7 +29,7 @@ Get-MgGroupEventInstanceDelta -EventId -GroupId -EndDateTime < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -43,7 +40,7 @@ Get-MgGroupEventInstanceDelta -InputObject -EndDateTime ] [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,6 +55,16 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -604,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -627,28 +634,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgGroupEventInstanceDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta) +- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md index 0dcdc14c34dd4..1e45bf97c8327 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuilding --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsBuilding ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuilding](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuilding?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsBuilding [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsBuilding [-ExpandProperty ] [-Property ] [-Filt Get-MgPlaceAsBuilding -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsBuilding -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsBuilding -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,7 +55,15 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuilding ## PARAMETERS @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,29 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuilding](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md index 8a488acb27c0a..3f13c5a3324ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsBuildingCheck -PlaceId [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md index a33d1bfa31c7e..4f1311fa51ded 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsBuildingCheckInCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md index 5f512aa4d5bad..712705575fd69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMap --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMap Get the map of a building in IMDF format. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the map of a building in IMDF format. Get-MgPlaceAsBuildingMap -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMap -PlaceId [-ExpandProperty ] [-Proper Get-MgPlaceAsBuildingMap -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,14 @@ This cmdlet has the following aliases, Get the map of a building in IMDF format. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMap -PlaceId $placeId + ## PARAMETERS ### -Break @@ -335,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -358,28 +363,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap) -- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap) +- [](https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md index c7fbd53ba2a06..e5f7ef40fb739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapFootprint --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsBuildingMapFootprint Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgPlaceAsBuildingMapFootprint -PlaceId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId Get-MgPlaceAsBuildingMapFootprint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,14 @@ This cmdlet has the following aliases, Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapFootprint -PlaceId $placeId + ## PARAMETERS ### -All @@ -548,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -571,29 +576,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint) -- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint) +- [](https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md index 8374d82ae177d..1cdca752d712f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapFootprintCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMapFootprintCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapFootprintCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapFootprintCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingMapFootprintCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMapFootprintCount -PlaceId [-Filter ] [-Se Get-MgPlaceAsBuildingMapFootprintCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapFootprintCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md index a62822c1663a8..0aa63b62c673f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevel --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsBuildingMapLevel Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgPlaceAsBuildingMapLevel -PlaceId [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsBuildingMapLevel -PlaceId [-ExpandProperty ] [-P Get-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-ExpandPro Get-MgPlaceAsBuildingMapLevel -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,14 @@ This cmdlet has the following aliases, Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevel -PlaceId $placeId + ## PARAMETERS ### -All @@ -547,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -570,29 +575,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel) -- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel) +- [](https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md index 4a54730e61a55..6cfa4d32d9d08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMapLevelCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingMapLevelCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMapLevelCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsBuildingMapLevelCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md index c00cd74647a1a..4b96ebc331fb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelFixture --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsBuildingMapLevelFixture Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId Get-MgPlaceAsBuildingMapLevelFixture -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +58,14 @@ This cmdlet has the following aliases, Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId + ## PARAMETERS ### -All @@ -576,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -599,29 +603,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture) -- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture) +- [](https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md index 914e338275fee..4c248dc703abf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelFixtureCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMapLevelFixtureCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelFixtureCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelFixtureCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingMapLevelFixtureCount -LevelMapId -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMapLevelFixtureCount -LevelMapId -PlaceId Get-MgPlaceAsBuildingMapLevelFixtureCount -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 @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelFixtureCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md index cb1055d3fee04..4ec4b28d9af66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelSection --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsBuildingMapLevelSection Collection of sections (such as zones or partitions) on this level. Supports upsert. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -Sec [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -Sec Get-MgPlaceAsBuildingMapLevelSection -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +58,14 @@ This cmdlet has the following aliases, Collection of sections (such as zones or partitions) on this level. Supports upsert. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelSection -PlaceId $placeId -LevelMapId $levelMapId + ## PARAMETERS ### -All @@ -576,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -599,29 +603,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection) +- [](https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md index d751b7f21480d..0523b5d5aefc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelSectionCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMapLevelSectionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelSectionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelSectionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingMapLevelSectionCount -LevelMapId -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMapLevelSectionCount -LevelMapId -PlaceId Get-MgPlaceAsBuildingMapLevelSectionCount -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 @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelSectionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md index 13cfb6cef1044..793cf9589f802 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelUnit --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsBuildingMapLevelUnit Collection of units (such as rooms or offices) on this level. Supports upsert. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,6 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -UnitMa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -UnitMa Get-MgPlaceAsBuildingMapLevelUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +58,14 @@ This cmdlet has the following aliases, Collection of units (such as rooms or offices) on this level. Supports upsert. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId + ## PARAMETERS ### -All @@ -576,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -599,29 +603,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit) +- [](https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md index a7dae02c417b6..c11586d6a7e97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsBuildingMapLevelUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsBuildingMapLevelUnitCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelUnitCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsBuildingMapLevelUnitCount -LevelMapId -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsBuildingMapLevelUnitCount -LevelMapId -PlaceId [- Get-MgPlaceAsBuildingMapLevelUnitCount -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 @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsBuildingMapLevelUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md index dc5167835d655..4981d7a00d58e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsDesk --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsDesk ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDesk](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDesk?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsDesk [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsDesk [-ExpandProperty ] [-Property ] [-Filter < Get-MgPlaceAsDesk -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsDesk -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,7 +55,15 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsDesk ## PARAMETERS @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,29 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsDesk](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md index db0203dadd15c..a31a22f1a968e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsDeskCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsDeskCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsDeskCheck -PlaceId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsDeskCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md index 8f63271edead1..b9e6948ec7adf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsDeskCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsDeskCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDeskCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDeskCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsDeskCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsDeskCheckInCount -PlaceId [-Filter ] [-Search [-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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsDeskCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md index f366c0b80810b..1ef19adb55f61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsFloor --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsFloor ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloor](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloor?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsFloor [-ExpandProperty ] [-Property ] [-Filter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsFloor [-ExpandProperty ] [-Property ] [-Filter Get-MgPlaceAsFloor -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsFloor -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,7 +55,15 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsFloor ## PARAMETERS @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,29 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsFloor](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md index a6159ce666055..5f5e76ba646d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsFloorCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsFloorCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsFloorCheck -PlaceId [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsFloorCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md index c2a1b19cdbce7..f6fe62aa79b35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsFloorCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsFloorCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloorCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloorCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsFloorCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsFloorCheckInCount -PlaceId [-Filter ] [-Search [-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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsFloorCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md index e858e27833693..f768afd108380 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoom --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsRoom ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoom?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsRoom [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsRoom [-ExpandProperty ] [-Property ] [-Filter < Get-MgPlaceAsRoom -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsRoom -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,21 +55,16 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## EXAMPLES -### Example 1: List all the rooms defined in the tenant -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsRoom -``` -This example will list all the rooms defined in the tenant - - ## PARAMETERS ### -All @@ -533,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -556,27 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md index ff839ec1beff3..c3f1d962440b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsRoomCheck -PlaceId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsRoomCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md index aa3b789513966..c11af1779ca2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsRoomCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsRoomCheckInCount -PlaceId [-Filter ] [-Search [-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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md index aa1259f58f08b..96e175b84ef0a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomList --- @@ -16,9 +16,6 @@ title: Get-MgPlaceAsRoomList Read the properties of a place object specified by its ID. The place object can be one of the following types: The listed resources are derived from the place object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomList](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomList?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgPlaceAsRoomList [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsRoomList [-ExpandProperty ] [-Property ] [-Filt Get-MgPlaceAsRoomList -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsRoomList -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsRoomList -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,14 @@ This cmdlet has the following aliases, Read the properties of a place object specified by its ID. The place object can be one of the following types: The listed resources are derived from the place object. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsRoomList -PlaceId $placeId + ## PARAMETERS ### -All @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,28 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomList](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist) +- [](https://learn.microsoft.com/graph/api/place-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md index 612172b1f7ce0..bf66d8b709ed2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsRoomListCheck -PlaceId [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md index 0fce1923656a2..7eca52a05fb71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsRoomListCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsRoomListCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsRoomListCheckInCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md index 7576bae0f300e..905a3d4ce5b20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListRoom --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListRoom Get rooms from places -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsRoomListRoom -PlaceId [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgPlaceAsRoomListRoom -PlaceId [-ExpandProperty ] [-Prope Get-MgPlaceAsRoomListRoom -PlaceId -RoomId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgPlaceAsRoomListRoom -PlaceId -RoomId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,6 +55,16 @@ This cmdlet has the following aliases, Get rooms from places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -545,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -568,27 +575,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md index bfb166e1a0d4f..0b0148cf911a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListRoomCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListRoomCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -573,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -596,27 +603,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md index 5a05f8b247850..93db329ef11cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListRoomCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListRoomCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsRoomListRoomCheckInCount -PlaceId -RoomId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsRoomListRoomCheckInCount -PlaceId -RoomId [-Filte Get-MgPlaceAsRoomListRoomCheckInCount -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 @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListRoomCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md index 359ef98e6ce79..5decf5d5582d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListRoomCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListRoomCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsRoomListRoomCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsRoomListRoomCount -PlaceId [-Filter ] [-Search [-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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListRoomCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md index 90ac0d389cc2b..6a58781e784cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListWorkspace --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListWorkspace Get workspaces from places -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId [-ExpandProperty ] [- Get-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ExpandP Get-MgPlaceAsRoomListWorkspace -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 workspaces from places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -545,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -568,27 +575,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md index 1f2d95ebfbc96..4b9c3e38eea8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListWorkspaceCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Place -WorkspaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +44,7 @@ Get-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Place Get-MgPlaceAsRoomListWorkspaceCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -574,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -597,27 +603,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md index 165321cfafef6..04064073f30af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListWorkspaceCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListWorkspaceCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgPlaceAsRoomListWorkspaceCheckInCount -PlaceId -WorkspaceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgPlaceAsRoomListWorkspaceCheckInCount -PlaceId -WorkspaceId [-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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -378,27 +385,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListWorkspaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md index 96da89368eb5b..2d3bd815cc0d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsRoomListWorkspaceCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsRoomListWorkspaceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsRoomListWorkspaceCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsRoomListWorkspaceCount -PlaceId [-Filter ] [-Searc Get-MgPlaceAsRoomListWorkspaceCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsRoomListWorkspaceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md index f2ca54f0cc7b7..77cdcd6e4bcd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsSection --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsSection ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSection?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsSection [-ExpandProperty ] [-Property ] [-Filte [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsSection [-ExpandProperty ] [-Property ] [-Filte Get-MgPlaceAsSection -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsSection -PlaceId [-ExpandProperty ] [-Property < Get-MgPlaceAsSection -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,7 +55,15 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsSection ## PARAMETERS @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,29 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md index 1fcadca223d4b..7591d163ccad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsSectionCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsSectionCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsSectionCheck -PlaceId [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md index a986cd491156f..4cf423ab6933b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsSectionCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsSectionCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSectionCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSectionCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsSectionCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsSectionCheckInCount -PlaceId [-Filter ] [-Search < Get-MgPlaceAsSectionCheckInCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsSectionCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md index 259cabae6f76c..d95f4b128a524 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsWorkspace --- @@ -14,10 +14,7 @@ title: Get-MgPlaceAsWorkspace ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspace?view=graph-powershell-beta) +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. ## SYNTAX @@ -29,7 +26,7 @@ Get-MgPlaceAsWorkspace [-ExpandProperty ] [-Property ] [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsWorkspace [-ExpandProperty ] [-Property ] [-Fil Get-MgPlaceAsWorkspace -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsWorkspace -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsWorkspace -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,7 +55,15 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsWorkspace ## PARAMETERS @@ -520,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -543,29 +548,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace) +- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md index 6364f61b098b3..65cda17bdef05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsWorkspaceCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgPlaceAsWorkspaceCheck -PlaceId [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -569,27 +576,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md index 6975d592ab194..58e1235a29093 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceAsWorkspaceCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceAsWorkspaceCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspaceCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceAsWorkspaceCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceAsWorkspaceCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsWorkspaceCheckInCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceAsWorkspaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md index 97a6502bc56c7..58874eca4a5e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCheck --- @@ -16,9 +16,6 @@ title: Get-MgPlaceCheck Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCheck?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgPlaceCheck -PlaceId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceCheck -PlaceId $placeId -CheckInClaimCalendarEventId $checkInClaimCalendarEventId + ## PARAMETERS ### -All @@ -548,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -571,29 +576,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck) -- [Graph API Reference](https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck) +- [](https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md index ef6f261f20298..30c685d90344a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCheckInCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCheckInCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCheckInCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCheckInCount -PlaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgPlaceCheckInCount -PlaceId [-Filter ] [-Search ] Get-MgPlaceCheckInCount -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -356,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgPlaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md index 8c65fbd05799b..8646b90055fc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCount --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCount [-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-MgPlaceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index 7b3ed4aaef2d3..4a23d0cdc5592 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsBuilding --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsBuilding Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsBuilding](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsBuilding?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsBuilding [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsBuilding](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index 8b7021f1b06ad..96fd3b3754f8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsDesk --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsDesk Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsDesk](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsDesk?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsDesk [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsDesk](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index 09a078fae5c81..f9f2809348384 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsFloor --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsFloor Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsFloor](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsFloor?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsFloor [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsFloor](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index e1b7bf0bef858..30ac610d0730f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsRoom --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsRoom Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsRoom?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsRoom [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index 0c8152b7df8ae..0d9fb0ff49028 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsRoomList --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsRoomList Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsRoomList](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsRoomList?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsRoomList [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsRoomList](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index 6316c32ac84d7..ce9cb1f0b4581 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsSection --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsSection Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsSection?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsSection [-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) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index a8f6ac68e766d..0cb175f5cba9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgPlaceCountAsWorkspace --- @@ -15,9 +15,6 @@ title: Get-MgPlaceCountAsWorkspace Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsWorkspace?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgPlaceCountAsWorkspace [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgPlaceCountAsWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md index 41b0c823c5c61..ca9430304962c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendar --- @@ -17,9 +17,6 @@ The user's calendars. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendar?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgUserCalendar -UserId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get1 @@ -39,7 +36,7 @@ Get-MgUserCalendar -UserId [-ExpandProperty ] [-Property -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +45,7 @@ Get-MgUserCalendar -CalendarId -UserId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,18 +60,13 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendar -UserId $userId -``` -This example shows how to use the Get-MgUserCalendar Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -563,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -586,26 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index 4eb7a166bc026..f5afd0ebd8356 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarCount --- @@ -15,9 +15,6 @@ title: Get-MgUserCalendarCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserCalendarCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserCalendarCount -UserId [-Filter ] [-Search ] Get-MgUserCalendarCount -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) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read.Shared, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read.Shared, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +{{ 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendarCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index 13dc3e67217a6..871075e8459e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarEvent --- @@ -17,9 +17,6 @@ The events in the calendar. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### List1 (Default) @@ -30,7 +27,7 @@ Get-MgUserCalendarEvent -CalendarId -UserId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,13 +41,15 @@ The events in the calendar. Navigation property. Read-only. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -504,27 +503,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgUserCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index 3883f00334d98..ef13b929dc26d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarGroup --- @@ -17,9 +17,6 @@ The user's calendar groups. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroup?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgUserCalendarGroup -UserId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgUserCalendarGroup -UserId [-ExpandProperty ] [-Property Get-MgUserCalendarGroup -CalendarGroupId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgUserCalendarGroup -CalendarGroupId -UserId [-ExpandPrope Get-MgUserCalendarGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ The user's calendar groups. Read-only. Nullable. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -``` -This example shows how to use the Get-MgUserCalendarGroup Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -594,26 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index d720ae31faebf..3df36e03a7603 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarGroupCalendar --- @@ -18,9 +18,6 @@ Navigation property. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroupCalendar?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -32,7 +29,6 @@ Get-MgUserCalendarGroupCalendar -CalendarGroupId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -47,23 +43,13 @@ Navigation property. Read-only. Nullable. -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read.Shared, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read.Shared, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +### EXAMPLE 1 -## EXAMPLES -### Example 1: Using the Get-MgUserCalendarGroupCalendar Cmdlet -```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -``` -This example shows how to use the Get-MgUserCalendarGroupCalendar Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). ## PARAMETERS @@ -517,26 +503,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgUserCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index 66ac2cca1f065..72cd4ada10f23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarGroupCount --- @@ -15,9 +15,6 @@ title: Get-MgUserCalendarGroupCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroupCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroupCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserCalendarGroupCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserCalendarGroupCount -UserId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +{{ 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendarGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md index 7755f985522a6..4d654fbb07d48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarPermission --- @@ -15,9 +15,6 @@ title: Get-MgUserCalendarPermission Get the specified permissions object of a user or group calendar that has been shared. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgUserCalendarPermission -UserId [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get1 @@ -38,7 +35,7 @@ Get-MgUserCalendarPermission -CalendarPermissionId -UserId -Ca [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -48,7 +45,7 @@ Get-MgUserCalendarPermission -CalendarPermissionId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List1 @@ -59,7 +56,7 @@ Get-MgUserCalendarPermission -UserId -CalendarId [-ExpandPrope [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity1 @@ -68,7 +65,7 @@ Get-MgUserCalendarPermission -UserId -CalendarId [-ExpandPrope Get-MgUserCalendarPermission -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -77,7 +74,7 @@ Get-MgUserCalendarPermission -InputObject [-ExpandProperty < Get-MgUserCalendarPermission -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -90,18 +87,13 @@ This cmdlet has the following aliases, Get the specified permissions object of a user or group calendar that has been shared. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Get-MgUserCalendarPermission -UserId $userId -``` -This example shows how to use the Get-MgUserCalendarPermission Cmdlet. - - ## PARAMETERS ### -All @@ -688,7 +680,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -711,28 +703,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calendar-list-calendarpermissions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission) +- [](https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/calendar-list-calendarpermissions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md index b863423d8a2d0..654240237096c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarPermissionCount --- @@ -15,9 +15,6 @@ title: Get-MgUserCalendarPermissionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarPermissionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarPermissionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserCalendarPermissionCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get1 @@ -35,7 +32,7 @@ Get-MgUserCalendarPermissionCount -UserId [-Filter ] [-Search < Get-MgUserCalendarPermissionCount -UserId -CalendarId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -44,7 +41,7 @@ Get-MgUserCalendarPermissionCount -UserId -CalendarId [-Filter Get-MgUserCalendarPermissionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +50,7 @@ Get-MgUserCalendarPermissionCount -InputObject [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,6 +62,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 @@ -384,7 +391,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -407,27 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserCalendarPermissionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index f2a2f21213e4d..b4685da4f5fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserCalendarView --- @@ -17,9 +17,6 @@ The calendar view for the calendar. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarView](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarView?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgUserCalendarView -UserId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### List1 @@ -43,7 +39,7 @@ Get-MgUserCalendarView -UserId -CalendarId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -57,23 +53,13 @@ The calendar view for the calendar. Navigation property. Read-only. -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +### EXAMPLE 1 -## EXAMPLES -### Example 1: Using the Get-MgUserCalendarView Cmdlet -```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. -Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" -``` -This example shows how to use the Get-MgUserCalendarView Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" ## PARAMETERS @@ -571,26 +557,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgUserCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md index 004b43bb5ced6..b619d11b1b043 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserDefaultCalendar --- @@ -16,9 +16,6 @@ title: Get-MgUserDefaultCalendar The user's primary calendar. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserDefaultCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserDefaultCalendar?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgUserDefaultCalendar -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgUserDefaultCalendar -UserId [-ExpandProperty ] [-Proper Get-MgUserDefaultCalendar -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,18 +47,13 @@ The user's primary calendar. Read-only. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserDefaultCalendar -UserId $userId -``` -This example shows how to use the Get-MgUserDefaultCalendar Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -351,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -374,26 +366,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserDefaultCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index f94635034f8d8..08e52b71dda58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserDefaultCalendarEvent --- @@ -17,9 +17,6 @@ The events in the calendar. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserDefaultCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserDefaultCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgUserDefaultCalendarEvent -UserId [-ExpandProperty ] [-F [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,13 +41,15 @@ The events in the calendar. Navigation property. Read-only. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -483,27 +482,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgUserDefaultCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index 717cf613781bf..e633ccf4877f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEvent --- @@ -18,9 +18,6 @@ Default is to show Events under the Default Calendar. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgUserEvent -UserId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgUserEvent -UserId [-ExpandProperty ] [-Property -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgUserEvent -EventId -UserId [-ExpandProperty ] Get-MgUserEvent -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,39 +61,21 @@ Default is to show Events under the Default Calendar. Read-only. Nullable. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" -``` -This example shows how to use the Get-MgUserEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Code snippet +### EXAMPLE 2 -```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" -``` -This example shows how to use the Get-MgUserEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -585,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -608,26 +587,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md index b63753bb1ed98..18902f3401711 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventAttachment --- @@ -18,9 +18,6 @@ Navigation property. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgUserEventAttachment -EventId -UserId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgUserEventAttachment -AttachmentId -EventId -UserId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgUserEventAttachment -AttachmentId -EventId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,18 +63,13 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventAttachment -UserId $userId -EventId $eventId -``` -This example shows how to use the Get-MgUserEventAttachment Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -593,7 +585,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -616,26 +608,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index f20bcf26edce9..36404a60d51b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventAttachmentCount --- @@ -15,9 +15,6 @@ title: Get-MgUserEventAttachmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventAttachmentCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventAttachmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserEventAttachmentCount -EventId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserEventAttachmentCount -EventId -UserId [-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) | Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.Read, | -| Application | Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -362,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventAttachmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md index 72b7f8b75b4d3..203565af1c86b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventCalendar --- @@ -17,9 +17,6 @@ The calendar that contains the event. Navigation property. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventCalendar?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Read-only. Get-MgUserEventCalendar -EventId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgUserEventCalendar -EventId -UserId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ The calendar that contains the event. Navigation property. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -360,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -383,27 +390,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index a0d2c74f72413..9a2065ed72376 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventCount --- @@ -15,9 +15,6 @@ title: Get-MgUserEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserEventCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserEventCount -UserId [-Filter ] [-Search ] Get-MgUserEventCount -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) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.ReadWrite, Calendars.Read, | +{{ 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,27 +363,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index 64ff4b2f18bb3..5181ab2748972 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventDelta --- @@ -18,9 +18,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -32,7 +29,6 @@ Get-MgUserEventDelta -UserId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -43,7 +39,7 @@ Get-MgUserEventDelta -InputObject -EndDateTime -Sta [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,13 +54,15 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | -| Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | -| Application | Calendars.Read, Calendars.ReadWrite, Calendars.ReadBasic, | +{{ Add code here }} ## PARAMETERS @@ -591,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -614,28 +612,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta) +- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md index 7c9094b627e19..4ef3d111f14b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventExtension --- @@ -16,9 +16,6 @@ title: Get-MgUserEventExtension The collection of open extensions defined for the event. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventExtension?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgUserEventExtension -EventId -UserId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgUserEventExtension -EventId -ExtensionId -UserId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgUserEventExtension -EventId -ExtensionId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, The collection of open extensions defined for the event. Nullable. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -579,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -602,28 +609,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md index 4bac2511b9211..68a8bf4e83ad4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventExtensionCount --- @@ -15,9 +15,6 @@ title: Get-MgUserEventExtensionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventExtensionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventExtensionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserEventExtensionCount -EventId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserEventExtensionCount -EventId -UserId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventExtensionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 0e20e08e12b3c..246772a9b0c93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventInstance --- @@ -19,9 +19,6 @@ Navigation property. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventInstance](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventInstance?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,7 @@ Get-MgUserEventInstance -EventId -UserId -EndDateTime [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -49,27 +46,14 @@ Navigation property. Read-only. Nullable. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | -| Application | Calendars.ReadBasic, Calendars.Read, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" -``` -This example shows how to use the Get-MgUserEventInstance Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -567,26 +551,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgUserEventInstance](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md index f16932ece9215..627ef79a3a40e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserEventInstanceDelta --- @@ -18,9 +18,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserEventInstanceDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventInstanceDelta?view=graph-powershell-beta) - ## SYNTAX ### Delta (Default) @@ -32,7 +29,7 @@ Get-MgUserEventInstanceDelta -EventId -UserId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -43,7 +40,7 @@ Get-MgUserEventInstanceDelta -InputObject -EndDateTime ] [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,6 +55,16 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -604,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -627,28 +634,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserEventInstanceDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta) +- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index 36c924f1dd2dd..b8949e3e2b282 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAcceptGroupEvent --- @@ -15,9 +15,6 @@ title: Invoke-MgAcceptGroupEvent Accept the specified event in a user calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### AcceptExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgAcceptGroupEvent -EventId -GroupId [-ResponseHeadersV [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -39,7 +35,6 @@ Invoke-MgAcceptGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgAcceptGroupEvent -InputObject [-ResponseHeadersVari [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -61,7 +55,6 @@ Invoke-MgAcceptGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Accept the specified event in a user calendar. +## 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 @@ -153,7 +156,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -453,7 +456,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -534,12 +537,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -562,28 +565,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgAcceptGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent) +- [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index 6868f52ab793d..07dc559a10144 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAcceptGroupEventTentatively --- @@ -17,9 +17,6 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptGroupEventTentatively](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptGroupEventTentatively?view=graph-powershell-beta) - ## SYNTAX ### AcceptExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgAcceptGroupEventTentatively -EventId -GroupId [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -41,7 +37,6 @@ Invoke-MgAcceptGroupEventTentatively -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgAcceptGroupEventTentatively -InputObject [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -63,7 +57,6 @@ Invoke-MgAcceptGroupEventTentatively -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +70,16 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -108,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -157,7 +160,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -485,7 +488,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -566,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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -579,7 +582,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -599,7 +602,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME ``: timeSlot +PROPOSEDNEWTIME : timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -611,28 +614,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgAcceptGroupEventTentatively](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively) +- [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index 2d88fa89a68b3..d3801fc4c6263 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAcceptUserEvent --- @@ -15,9 +15,6 @@ title: Invoke-MgAcceptUserEvent Accept the specified event in a user calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptUserEvent?view=graph-powershell-beta) - ## SYNTAX ### AcceptExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgAcceptUserEvent -EventId -UserId [-ResponseHeadersVar [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -39,7 +35,6 @@ Invoke-MgAcceptUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgAcceptUserEvent -InputObject [-ResponseHeadersVaria [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -61,7 +55,6 @@ Invoke-MgAcceptUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Accept the specified event in a user calendar. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -96,10 +80,6 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgAcceptUserEvent -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Invoke-MgAcceptUserEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -131,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -180,7 +160,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -453,7 +433,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -561,12 +541,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -589,27 +569,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgAcceptUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent) +- [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index f86f56ef8ffe7..c3e216fc39404 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAcceptUserEventTentatively --- @@ -17,9 +17,6 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptUserEventTentatively](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptUserEventTentatively?view=graph-powershell-beta) - ## SYNTAX ### AcceptExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgAcceptUserEventTentatively -EventId -UserId [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -41,7 +37,6 @@ Invoke-MgAcceptUserEventTentatively -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgAcceptUserEventTentatively -InputObject [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -63,7 +57,6 @@ Invoke-MgAcceptUserEventTentatively -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,23 +70,15 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar $params = @{ - comment = "I may not be able to make this week. How about next week?" + comment = "I may not be able to make this week. +How about next week?" sendResponse = $true proposedNewTime = @{ start = @{ @@ -110,10 +95,6 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgAcceptUserEventTentatively -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Invoke-MgAcceptUserEventTentatively Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -145,7 +126,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -194,7 +175,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -495,7 +476,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -603,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -616,7 +597,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -636,7 +617,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME ``: timeSlot +PROPOSEDNEWTIME : timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -648,27 +629,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgAcceptUserEventTentatively](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively) +- [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md index 2e8057e3dea58..34b0729e0f701 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgCalendarGroupCalendar --- @@ -15,9 +15,6 @@ title: Invoke-MgCalendarGroupCalendar Invoke function allowedCalendarSharingRoles -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaCalendarGroupCalendar?view=graph-powershell-beta) - ## SYNTAX ### Calendar (Default) @@ -27,7 +24,7 @@ Invoke-MgCalendarGroupCalendar -GroupId -User [-Count] [-Filte [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity @@ -37,7 +34,7 @@ Invoke-MgCalendarGroupCalendar -InputObject [-Count] [-Filte [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Invoke function allowedCalendarSharingRoles +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -420,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -443,27 +450,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md index b1850b8466bfb..ef8b008c15e61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles --- @@ -15,9 +15,6 @@ title: Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles Invoke function allowedCalendarSharingRoles -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles?view=graph-powershell-beta) - ## SYNTAX ### Calendar (Default) @@ -27,7 +24,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -User -UserId [-Filter ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Calendar1 @@ -37,7 +34,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -User -UserId -CalendarId [-Count] [-Filter ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity1 @@ -47,7 +44,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -InputObject ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity @@ -57,7 +54,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -InputObject ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -69,6 +66,16 @@ This cmdlet has the following aliases, Invoke function allowedCalendarSharingRoles +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -479,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -502,27 +509,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index da0f8eb66d249..a2fa27145cc08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDeclineGroupEvent --- @@ -17,9 +17,6 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDeclineGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDeclineGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### DeclineExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgDeclineGroupEvent -EventId -GroupId [-ResponseHeaders [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Decline @@ -41,7 +37,6 @@ Invoke-MgDeclineGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgDeclineGroupEvent -InputObject [-ResponseHeadersVar [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentity @@ -63,7 +57,6 @@ Invoke-MgDeclineGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +70,16 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -108,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -157,7 +160,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -485,7 +488,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -566,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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -579,7 +582,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -599,7 +602,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME ``: timeSlot +PROPOSEDNEWTIME : timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -611,28 +614,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgDeclineGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent) +- [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index 4f83282941e86..f546e57152d06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDeclineUserEvent --- @@ -17,9 +17,6 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDeclineUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDeclineUserEvent?view=graph-powershell-beta) - ## SYNTAX ### DeclineExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgDeclineUserEvent -EventId -UserId [-ResponseHeadersVa [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Decline @@ -41,7 +37,6 @@ Invoke-MgDeclineUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgDeclineUserEvent -InputObject [-ResponseHeadersVari [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentity @@ -63,7 +57,6 @@ Invoke-MgDeclineUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,23 +70,15 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar $params = @{ - comment = "I won't be able to make this week. How about next week?" + comment = "I won't be able to make this week. +How about next week?" sendResponse = $true proposedNewTime = @{ start = @{ @@ -110,10 +95,6 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgDeclineUserEvent -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Invoke-MgDeclineUserEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -145,7 +126,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -194,7 +175,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -495,7 +476,7 @@ HelpMessage: '' ### -SendResponse - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -603,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -616,7 +597,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -636,7 +617,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME ``: timeSlot +PROPOSEDNEWTIME : timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -648,27 +629,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgDeclineUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent) +- [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index 0629d8746d3e5..7458aad7a051f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDescendantPlace --- @@ -15,9 +15,6 @@ title: Invoke-MgDescendantPlace Invoke function descendants -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDescendantPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDescendantPlace?view=graph-powershell-beta) - ## SYNTAX ### Descendant (Default) @@ -27,7 +24,7 @@ Invoke-MgDescendantPlace -PlaceId [-Count] [-ExpandProperty ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### DescendantViaIdentity @@ -37,7 +34,7 @@ Invoke-MgDescendantPlace -InputObject [-Count] [-ExpandPrope [-Filter ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Invoke function descendants -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Place.Read.All, Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.Read.All, Place.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -473,7 +472,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -496,27 +495,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDescendantPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md index c9478d95fc3ad..19c0235106bad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDismissGroupEventReminder --- @@ -15,9 +15,6 @@ title: Invoke-MgDismissGroupEventReminder Dismiss a reminder that has been triggered for an event in a user calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDismissGroupEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDismissGroupEventReminder?view=graph-powershell-beta) - ## SYNTAX ### Dismiss (Default) @@ -27,7 +24,6 @@ Invoke-MgDismissGroupEventReminder -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DismissViaIdentity @@ -37,7 +33,6 @@ Invoke-MgDismissGroupEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Dismiss a reminder that has been triggered for an event in a user calendar. +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -402,28 +407,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDismissGroupEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder) +- [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index 8bb09181de16c..db530f6835c97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDismissUserEventReminder --- @@ -15,9 +15,6 @@ title: Invoke-MgDismissUserEventReminder Dismiss a reminder that has been triggered for an event in a user calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDismissUserEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDismissUserEventReminder?view=graph-powershell-beta) - ## SYNTAX ### Dismiss (Default) @@ -27,7 +24,6 @@ Invoke-MgDismissUserEventReminder -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DismissViaIdentity @@ -37,7 +33,6 @@ Invoke-MgDismissUserEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,28 +44,15 @@ This cmdlet has the following aliases, Dismiss a reminder that has been triggered for an event in a user calendar. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId -``` -This example shows how to use the Invoke-MgDismissUserEventReminder Cmdlet. - - ## PARAMETERS ### -Break @@ -401,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -424,27 +406,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDismissUserEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder) +- [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index 50316826ba99b..f600107c18650 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgForwardGroupEvent --- @@ -13,13 +13,10 @@ title: Invoke-MgForwardGroupEvent ## SYNOPSIS -This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaForwardGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaForwardGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### ForwardExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgForwardGroupEvent -EventId -GroupId [-ResponseHeaders [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Forward @@ -41,7 +37,6 @@ Invoke-MgForwardGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgForwardGroupEvent -InputObject [-ResponseHeadersVar [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentity @@ -63,7 +57,6 @@ Invoke-MgForwardGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,17 +66,19 @@ This cmdlet has the following aliases, ## DESCRIPTION -This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.Read, | -| Application | Calendars.Read, | +{{ Add code here }} ## PARAMETERS @@ -116,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -165,7 +160,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -465,7 +460,7 @@ HelpMessage: '' ### -ToRecipients - +. To construct, see NOTES section for TORECIPIENTS properties and create a hash table. ```yaml @@ -547,7 +542,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [Comment ]: [ToRecipients ]: @@ -556,7 +551,7 @@ BODYPARAMETER `]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -585,28 +580,5 @@ TORECIPIENTS : . ## RELATED LINKS -- [Invoke-MgForwardGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent) +- [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 12dca092bc285..78552c9d8e391 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgForwardUserEvent --- @@ -13,13 +13,10 @@ title: Invoke-MgForwardUserEvent ## SYNOPSIS -This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaForwardUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaForwardUserEvent?view=graph-powershell-beta) - ## SYNTAX ### ForwardExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgForwardUserEvent -EventId -UserId [-ResponseHeadersVa [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Forward @@ -41,7 +37,6 @@ Invoke-MgForwardUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentityExpanded @@ -52,7 +47,6 @@ Invoke-MgForwardUserEvent -InputObject [-ResponseHeadersVari [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentity @@ -63,7 +57,6 @@ Invoke-MgForwardUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,22 +66,13 @@ This cmdlet has the following aliases, ## DESCRIPTION -This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.Read, | -| Delegated (personal Microsoft account) | Calendars.Read, | -| Application | Calendars.Read, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -107,10 +91,6 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Invoke-MgForwardUserEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -142,7 +122,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -191,7 +171,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -464,7 +444,7 @@ HelpMessage: '' ### -ToRecipients - +. To construct, see NOTES section for TORECIPIENTS properties and create a hash table. ```yaml @@ -573,7 +553,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ToRecipients ]: @@ -582,7 +562,7 @@ BODYPARAMETER `]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -611,27 +591,5 @@ TORECIPIENTS : . ## RELATED LINKS -- [Invoke-MgForwardUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent) +- [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index 2fd4e57424f7f..ed1d273eb098b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgSnoozeGroupEventReminder --- @@ -15,9 +15,6 @@ title: Invoke-MgSnoozeGroupEventReminder Postpone a reminder for an event in a user calendar until a new time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaSnoozeGroupEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaSnoozeGroupEventReminder?view=graph-powershell-beta) - ## SYNTAX ### SnoozeExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgSnoozeGroupEventReminder -EventId -GroupId [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Snooze @@ -39,7 +35,6 @@ Invoke-MgSnoozeGroupEventReminder -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgSnoozeGroupEventReminder -InputObject [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentity @@ -61,7 +55,6 @@ Invoke-MgSnoozeGroupEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Postpone a reminder for an event in a user calendar until a new time. +## 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 @@ -508,7 +511,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [NewReminderTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -516,7 +519,7 @@ BODYPARAMETER `]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -536,7 +539,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -NEWREMINDERTIME ``: dateTimeTimeZone +NEWREMINDERTIME : 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'. @@ -545,28 +548,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgSnoozeGroupEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder) +- [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 5a1cba3614885..0268a3767b8e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgSnoozeUserEventReminder --- @@ -15,9 +15,6 @@ title: Invoke-MgSnoozeUserEventReminder Postpone a reminder for an event in a user calendar until a new time. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaSnoozeUserEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaSnoozeUserEventReminder?view=graph-powershell-beta) - ## SYNTAX ### SnoozeExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgSnoozeUserEventReminder -EventId -UserId [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Snooze @@ -39,7 +35,6 @@ Invoke-MgSnoozeUserEventReminder -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgSnoozeUserEventReminder -InputObject [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentity @@ -61,7 +55,6 @@ Invoke-MgSnoozeUserEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Postpone a reminder for an event in a user calendar until a new time. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -98,10 +82,6 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgSnoozeUserEventReminder -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Invoke-MgSnoozeUserEventReminder Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -133,7 +113,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -537,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [NewReminderTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -545,7 +525,7 @@ BODYPARAMETER `]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -565,7 +545,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -NEWREMINDERTIME ``: dateTimeTimeZone +NEWREMINDERTIME : 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'. @@ -574,27 +554,5 @@ See below for more possible values. ## RELATED LINKS -- [Invoke-MgSnoozeUserEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder) +- [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md index dd176898f0250..533918a1bbdd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.Calendar -Module Guid: 57118c11-8f48-476f-a2ff-0d48d10d532b +Module Guid: 829b7154-eda3-4c4d-9bc7-1813624b560b Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.calendar/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -477,22 +477,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserEventExtension](Update-MgUserEventExtension.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md index aee1fd50e84fa..a3d38d3ace01f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupCalendarEvent --- @@ -15,9 +15,6 @@ title: New-MgGroupCalendarEvent Create new navigation property to events for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -46,7 +43,6 @@ New-MgGroupCalendarEvent -GroupId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +52,6 @@ New-MgGroupCalendarEvent -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +80,6 @@ New-MgGroupCalendarEvent -InputObject [-ResponseHeadersVaria [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +89,6 @@ New-MgGroupCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,6 +100,16 @@ This cmdlet has the following aliases, Create new navigation property to events for groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1890,12 +1893,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2152,7 +2155,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2408,7 +2411,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2677,7 +2680,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2957,7 +2960,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3015,7 +3018,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3029,14 +3032,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3069,7 +3072,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3083,7 +3086,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3092,27 +3095,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md index 0155a18ec7c75..efa7b9ff65ebd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupCalendarPermission --- @@ -15,9 +15,6 @@ title: New-MgGroupCalendarPermission Create new navigation property to calendarPermissions for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgGroupCalendarPermission -GroupId [-ResponseHeadersVariable ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,6 @@ New-MgGroupCalendarPermission -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +45,7 @@ New-MgGroupCalendarPermission -InputObject [-ResponseHeaders [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +55,7 @@ New-MgGroupCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +67,16 @@ This cmdlet has the following aliases, Create new navigation property to calendarPermissions for groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -597,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 ``: calendarPermission +BODYPARAMETER : calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -613,12 +619,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS ``: emailAddress +EMAILADDRESS : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -641,27 +647,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md index 08af6719d2b58..1b282c8fcac67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupEvent --- @@ -15,9 +15,6 @@ title: New-MgGroupEvent Use this API to create a new event. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -46,7 +43,6 @@ New-MgGroupEvent -GroupId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +52,6 @@ New-MgGroupEvent -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +80,6 @@ New-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +89,6 @@ New-MgGroupEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -108,9 +101,8 @@ This cmdlet has the following aliases, Use this API to create a new event. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -144,10 +136,6 @@ $params = @{ New-MgGroupEvent -GroupId $groupId -BodyParameter $params -``` -This example shows how to use the New-MgGroupEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1931,12 +1919,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2193,7 +2181,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2449,7 +2437,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2718,7 +2706,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2998,7 +2986,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3056,7 +3044,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3070,14 +3058,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3110,7 +3098,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3124,7 +3112,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3133,27 +3121,5 @@ See below for more possible values. ## RELATED LINKS -- [New-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent) +- [](https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index f0cd36a958926..f92e522c06780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupEventAttachment --- @@ -15,9 +15,6 @@ title: New-MgGroupEventAttachment Create new navigation property to attachments for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgGroupEventAttachment -EventId -GroupId [-ResponseHeaders [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgGroupEventAttachment -EventId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +45,6 @@ New-MgGroupEventAttachment -InputObject [-ResponseHeadersVar [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +54,7 @@ New-MgGroupEventAttachment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,13 +66,15 @@ This cmdlet has the following aliases, Create new navigation property to attachments for groups -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -629,7 +626,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: attachment +BODYPARAMETER : attachment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -640,7 +637,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z [Name ]: The attachment's file name. [Size ]: The length of the attachment in bytes. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -663,27 +660,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index 0e6c7990a59ad..0e1acf4f95eeb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupEventAttachmentUploadSession --- @@ -22,9 +22,6 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupEventAttachmentUploadSession](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventAttachmentUploadSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,6 @@ New-MgGroupEventAttachmentUploadSession -EventId -GroupId [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +42,6 @@ New-MgGroupEventAttachmentUploadSession -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +52,6 @@ New-MgGroupEventAttachmentUploadSession -InputObject [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +62,6 @@ New-MgGroupEventAttachmentUploadSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,6 +80,16 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -146,7 +149,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -501,7 +504,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ATTACHMENTITEM ``: attachmentItem +ATTACHMENTITEM : attachmentItem [(Any) ]: This indicates any property can be added to this object. [AttachmentType ]: attachmentType [ContentId ]: The CID or Content-Id of the attachment for referencing for the in-line attachments using the tag in HTML messages. @@ -516,7 +519,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AttachmentItem ]: attachmentItem [(Any) ]: This indicates any property can be added to this object. @@ -533,7 +536,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -556,28 +559,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgGroupEventAttachmentUploadSession](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession) +- [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md index 5650ee01bfe96..c944207ce6117 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgGroupEventExtension --- @@ -17,9 +17,6 @@ Create an open extension (openTypeExtension object) and add custom properties in You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventExtension?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgGroupEventExtension -EventId -GroupId [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgGroupEventExtension -EventId -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgGroupEventExtension -InputObject [-ResponseHeadersVari [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,6 @@ New-MgGroupEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,9 +67,8 @@ You can create an open extension in a resource instance and store custom data to The table in the Permissions section lists the resources that support open extensions. ## EXAMPLES -### Example 1: Create an extension in the specified group event -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -90,10 +82,6 @@ $params = @{ New-MgGroupEventExtension -GroupId $groupId -EventId $eventId -BodyParameter $params -``` -This example will create an extension in the specified group event - - ## PARAMETERS ### -AdditionalProperties @@ -507,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -530,27 +518,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension) -- [Graph API Reference](https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension) +- [](https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index f264450e5b2fc..73570a87ca196 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlace --- @@ -16,9 +16,6 @@ title: New-MgPlace Create a new place object. You can also use this method to create the following child object types: building, floor, section, room, workspace, or desk. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlace?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgPlace [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,7 @@ New-MgPlace [-ResponseHeadersVariable ] [-AdditionalProperties [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,13 +49,82 @@ This cmdlet has the following aliases, Create a new place object. You can also use this method to create the following child object types: building, floor, section, room, workspace, or desk. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.building" + displayName = "B001" +} + +New-MgPlace -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.floor" + displayName = "F1" + parentId = "767a31a7-6987-41c9-b829-ab351b8aab53" +} + +New-MgPlace -BodyParameter $params + +### EXAMPLE 3 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.section" + displayName = "S1" + parentId = "46ef7aed-5d94-4fd4-ae03-b333bc7a6955" +} + +New-MgPlace -BodyParameter $params + +### EXAMPLE 4 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.desk" + displayName = "D1" + parentId = "1ad0f725-6885-49c5-9a47-3b22a1f9409d" +} + +New-MgPlace -BodyParameter $params + +### EXAMPLE 5 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.room" + displayName = "Conf Room 4/3.3G11" + parentId = "46ef7aed-5d94-4fd4-ae03-b333bc7a6955" + bookingType = "standard" +} + +New-MgPlace -BodyParameter $params + +### EXAMPLE 6 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.workspace" + parentId = "f7de7265-e420-47b4-9d49-28d728716241" + displayName = "testSpace001" + tags = @( + "test" +) +} -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.ReadWrite.All, | +New-MgPlace -BodyParameter $params ## PARAMETERS @@ -562,7 +628,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -571,7 +637,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: place +BODYPARAMETER : place [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -613,7 +679,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -625,28 +691,5 @@ As an example, the accuracy can be measured in meters, such as the latitude and ## RELATED LINKS -- [New-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace) +- [](https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md index 5bb343100d476..8eeb5abfc80c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsBuildingCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsBuildingCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsBuildingCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgPlaceAsBuildingCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md index 8e986c4ef4b1f..053ee88a0b141 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingMapFootprint --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingMapFootprint Create new navigation property to footprints for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgPlaceAsBuildingMapFootprint -PlaceId [-ResponseHeadersVariable ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,6 @@ New-MgPlaceAsBuildingMapFootprint -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +43,7 @@ New-MgPlaceAsBuildingMapFootprint -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +53,6 @@ New-MgPlaceAsBuildingMapFootprint -InputObject -BodyParamete [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +64,16 @@ This cmdlet has the following aliases, Create new navigation property to footprints for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -482,7 +487,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -505,27 +510,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md index 36f2f4764d75e..ed627799dfa9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingMapLevel --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingMapLevel Create new navigation property to levels for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgPlaceAsBuildingMapLevel -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -41,7 +37,7 @@ New-MgPlaceAsBuildingMapLevel -InputObject [-PlaceId ] [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -51,7 +47,6 @@ New-MgPlaceAsBuildingMapLevel -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgPlaceAsBuildingMapLevel -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 levels for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -601,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: levelMap +BODYPARAMETER : levelMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -633,7 +638,7 @@ Supports upsert. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -670,27 +675,4 @@ Read-only. ## RELATED LINKS -- [New-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md index b25e99cf11b5d..20d786cb6b866 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingMapLevelFixture --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingMapLevelFixture Create new navigation property to fixtures for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +44,7 @@ New-MgPlaceAsBuildingMapLevelFixture -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +54,7 @@ New-MgPlaceAsBuildingMapLevelFixture -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to fixtures for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -538,14 +544,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 ``: fixtureMap +BODYPARAMETER : fixtureMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -568,27 +574,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md index 4fdf80262b3bc..bed6e263de1ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingMapLevelSection --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingMapLevelSection Create new navigation property to sections for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +44,7 @@ New-MgPlaceAsBuildingMapLevelSection -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +54,7 @@ New-MgPlaceAsBuildingMapLevelSection -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to sections for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -538,14 +544,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 ``: sectionMap +BODYPARAMETER : sectionMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the section to which this sectionMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -568,27 +574,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md index 1c636c4d1391c..dc4d29389133b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsBuildingMapLevelUnit --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsBuildingMapLevelUnit Create new navigation property to units for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +44,7 @@ New-MgPlaceAsBuildingMapLevelUnit -InputObject [-PlaceId ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +54,7 @@ New-MgPlaceAsBuildingMapLevelUnit -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to units for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -538,14 +544,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 ``: unitMap +BODYPARAMETER : unitMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the place (such as a room) to which this unitMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -568,27 +574,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md index 14e4452b8e62a..d0c2f5529cdf8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsDeskCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsDeskCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsDeskCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsDeskCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsDeskCheck -InputObject [-ResponseHeadersVariabl [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,6 @@ New-MgPlaceAsDeskCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,6 +64,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +526,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +549,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md index 8c1525d803693..28106f4b36a0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsFloorCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsFloorCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsFloorCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsFloorCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsFloorCheck -InputObject [-ResponseHeadersVariab [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgPlaceAsFloorCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md index e5abfcfe30908..c3248598159b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsRoomCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsRoomCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsRoomCheck -InputObject [-ResponseHeadersVariabl [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,6 @@ New-MgPlaceAsRoomCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,6 +64,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +526,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +549,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md index e96b16b836a00..67b906e15abeb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomListCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomListCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsRoomListCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsRoomListCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsRoomListCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgPlaceAsRoomListCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md index 4344e93f407bd..b82be6a8b1455 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomListRoom --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomListRoom Create new navigation property to rooms for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgPlaceAsRoomListRoom -PlaceId [-ResponseHeadersVariable ] [-Tags ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -50,7 +47,6 @@ New-MgPlaceAsRoomListRoom -InputObject [-PlaceId ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -60,7 +56,6 @@ New-MgPlaceAsRoomListRoom -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -70,7 +65,6 @@ New-MgPlaceAsRoomListRoom -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,6 +76,16 @@ This cmdlet has the following aliases, Create new navigation property to rooms for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1040,7 +1044,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -1049,7 +1053,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: room +BODYPARAMETER : room [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1104,7 +1108,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -1113,7 +1117,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1136,27 +1140,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md index 38e4cd7dbb2a1..b1ac5258ab18e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomListRoomCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomListRoomCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +45,6 @@ New-MgPlaceAsRoomListRoomCheck -InputObject [-ResponseHeader [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +54,7 @@ New-MgPlaceAsRoomListRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md index 32b01c6bfc086..c814f8275001b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomListWorkspace --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomListWorkspace Create new navigation property to workspaces for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgPlaceAsRoomListWorkspace -PlaceId [-ResponseHeadersVariable ] [-Phone ] [-PlaceId1 ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -46,7 +43,6 @@ New-MgPlaceAsRoomListWorkspace -InputObject [-PlaceId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +52,6 @@ New-MgPlaceAsRoomListWorkspace -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +61,7 @@ New-MgPlaceAsRoomListWorkspace -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,6 +73,16 @@ This cmdlet has the following aliases, Create new navigation property to workspaces for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -875,7 +880,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -884,7 +889,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: workspace +BODYPARAMETER : workspace [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -935,7 +940,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -944,7 +949,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -967,27 +972,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md index 9497f4f31acd0..6a7a334158d26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsRoomListWorkspaceCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsRoomListWorkspaceCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +45,6 @@ New-MgPlaceAsRoomListWorkspaceCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +54,7 @@ New-MgPlaceAsRoomListWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md index de1c99fda4f81..689a0b041ff6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsSectionCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsSectionCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsSectionCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsSectionCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsSectionCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgPlaceAsSectionCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md index 73ca0b769396e..1513fc083a75d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceAsWorkspaceCheck --- @@ -15,9 +15,6 @@ title: New-MgPlaceAsWorkspaceCheck Create new navigation property to checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgPlaceAsWorkspaceCheck -PlaceId [-ResponseHeadersVariable [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgPlaceAsWorkspaceCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgPlaceAsWorkspaceCheck -InputObject [-ResponseHeadersVa [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgPlaceAsWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -514,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -523,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -546,27 +550,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md index 0524c06cb290e..15bfdf2cf2e7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgPlaceCheck --- @@ -16,9 +16,6 @@ title: New-MgPlaceCheck Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceCheck?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgPlaceCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgPlaceCheck -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +45,6 @@ New-MgPlaceCheck -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +54,6 @@ New-MgPlaceCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,20 @@ This cmdlet has the following aliases, Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "#microsoft.graph.checkInClaim" + calendarEventId = "040000008200E00074C5B7101A82E00800000000D02AC02D26EFDB010000000000000000100000005A18ADA04F0A24489AE13ED3CC367978" + checkInMethod = "verified" +} + +New-MgPlaceCheck -PlaceId $placeId -BodyParameter $params + ## PARAMETERS ### -AdditionalProperties @@ -516,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. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -525,7 +532,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -548,28 +555,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck) +- [](https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index 91a71bbedc641..c89a705b083fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserCalendar --- @@ -15,9 +15,6 @@ title: New-MgUserCalendar Create new navigation property to calendars for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendar?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,7 @@ New-MgUserCalendar -UserId [-ResponseHeadersVariable ] [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +42,6 @@ New-MgUserCalendar -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -63,7 +59,7 @@ New-MgUserCalendar -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -73,7 +69,6 @@ New-MgUserCalendar -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -85,18 +80,10 @@ This cmdlet has the following aliases, Create new navigation property to calendars for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -105,11 +92,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendar -UserId $userId -BodyParameter $params -``` -This example shows how to use the New-MgUserCalendar Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -1008,7 +990,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendar +BODYPARAMETER : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1795,7 +1777,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1822,7 +1804,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -OWNER ``: emailAddress +OWNER : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. @@ -1837,26 +1819,4 @@ Read-only. ## RELATED LINKS -- [New-MgUserCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index fd848f2855fe2..980e4eda473bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserCalendarEvent --- @@ -15,9 +15,6 @@ title: New-MgUserCalendarEvent Create new navigation property to events for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded1 (Default) @@ -46,7 +43,6 @@ New-MgUserCalendarEvent -CalendarId -UserId [-ResponseHeadersV [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create1 @@ -56,7 +52,6 @@ New-MgUserCalendarEvent -CalendarId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded1 @@ -85,7 +80,6 @@ New-MgUserCalendarEvent -InputObject [-ResponseHeadersVariab [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity1 @@ -95,7 +89,6 @@ New-MgUserCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,18 +100,10 @@ This cmdlet has the following aliases, Create new navigation property to events for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Create an event in a specific calendar -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -152,14 +137,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params -``` -This example shows how to use the New-MgUserCalendarEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Create and enable an event as an online meeting +### EXAMPLE 2 -```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -194,11 +174,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params -``` -This example shows how to use the New-MgUserCalendarEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -2010,12 +1985,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2272,7 +2247,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2528,7 +2503,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2797,7 +2772,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3077,7 +3052,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3135,7 +3110,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3149,14 +3124,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3189,7 +3164,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3203,7 +3178,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3212,26 +3187,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgUserCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index d7982c03b5583..ae851a9627dab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserCalendarGroup --- @@ -15,9 +15,6 @@ title: New-MgUserCalendarGroup Create new navigation property to calendarGroups for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarGroup?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgUserCalendarGroup -UserId [-ResponseHeadersVariable ] [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,6 @@ New-MgUserCalendarGroup -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +44,6 @@ New-MgUserCalendarGroup -InputObject [-ResponseHeadersVariab [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +53,7 @@ New-MgUserCalendarGroup -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +65,10 @@ This cmdlet has the following aliases, Create new navigation property to calendarGroups for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -91,11 +77,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroup -UserId $userId -BodyParameter $params -``` -This example shows how to use the New-MgUserCalendarGroup Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -600,7 +581,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendarGroup +BODYPARAMETER : calendarGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1127,7 +1108,7 @@ Nullable. Read-only. Nullable. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1150,26 +1131,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index 4a4b8821653a0..2c743dc899799 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserCalendarGroupCalendar --- @@ -15,9 +15,6 @@ title: New-MgUserCalendarGroupCalendar Create new navigation property to calendars for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarGroupCalendar?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -36,7 +33,7 @@ New-MgUserCalendarGroupCalendar -CalendarGroupId -UserId [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +43,7 @@ New-MgUserCalendarGroupCalendar -CalendarGroupId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -64,7 +61,7 @@ New-MgUserCalendarGroupCalendar -InputObject [-ResponseHeade [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +71,7 @@ New-MgUserCalendarGroupCalendar -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -86,18 +83,10 @@ This cmdlet has the following aliases, Create new navigation property to calendars for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -106,11 +95,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params -``` -This example shows how to use the New-MgUserCalendarGroupCalendar Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -1036,7 +1020,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendar +BODYPARAMETER : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1823,7 +1807,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1850,7 +1834,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -OWNER ``: emailAddress +OWNER : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. @@ -1865,26 +1849,4 @@ Read-only. ## RELATED LINKS -- [New-MgUserCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md index 5973efe39670d..8d7527ba0371f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserCalendarPermission --- @@ -15,9 +15,6 @@ title: New-MgUserCalendarPermission Create new navigation property to calendarPermissions for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgUserCalendarPermission -UserId [-ResponseHeadersVariable [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateExpanded1 @@ -39,7 +36,7 @@ New-MgUserCalendarPermission -UserId -CalendarId [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create1 @@ -49,7 +46,7 @@ New-MgUserCalendarPermission -UserId -CalendarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -59,7 +56,6 @@ New-MgUserCalendarPermission -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded1 @@ -70,7 +66,7 @@ New-MgUserCalendarPermission -InputObject [-ResponseHeadersV [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -81,7 +77,7 @@ New-MgUserCalendarPermission -InputObject [-ResponseHeadersV [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity1 @@ -91,7 +87,7 @@ New-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -101,7 +97,7 @@ New-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -113,6 +109,16 @@ This cmdlet has the following aliases, Create new navigation property to calendarPermissions for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -786,7 +792,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendarPermission +BODYPARAMETER : calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -802,12 +808,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS ``: emailAddress +EMAILADDRESS : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -830,27 +836,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index 4bf4636c70931..09daad89b6218 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserDefaultCalendarEvent --- @@ -15,9 +15,6 @@ title: New-MgUserDefaultCalendarEvent Create new navigation property to events for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserDefaultCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserDefaultCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -46,7 +43,6 @@ New-MgUserDefaultCalendarEvent -UserId [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +52,6 @@ New-MgUserDefaultCalendarEvent -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +80,6 @@ New-MgUserDefaultCalendarEvent -InputObject [-ResponseHeader [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +89,7 @@ New-MgUserDefaultCalendarEvent -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -107,13 +101,15 @@ This cmdlet has the following aliases, Create new navigation property to events for users -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -1898,12 +1894,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2160,7 +2156,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2416,7 +2412,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2685,7 +2681,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2965,7 +2961,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3023,7 +3019,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3037,14 +3033,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3077,7 +3073,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3091,7 +3087,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3100,27 +3096,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgUserDefaultCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index 9207bc9e013cb..b79bfa326600c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserEvent --- @@ -15,9 +15,6 @@ title: New-MgUserEvent Create new navigation property to events for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -46,7 +43,6 @@ New-MgUserEvent -UserId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +52,6 @@ New-MgUserEvent -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +80,6 @@ New-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +89,6 @@ New-MgUserEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,18 +100,10 @@ This cmdlet has the following aliases, Create new navigation property to events for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -153,14 +138,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params -``` -This example shows how to use the New-MgUserEvent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### EXAMPLE 2 -### Example 2: Code snippet - -```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -208,14 +188,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params -``` -This example shows how to use the New-MgUserEvent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### EXAMPLE 3 -### Example 3: Code snippet - -```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -251,11 +226,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params -``` -This example shows how to use the New-MgUserEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -2040,12 +2010,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2302,7 +2272,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2558,7 +2528,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2827,7 +2797,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3107,7 +3077,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3165,7 +3135,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3179,14 +3149,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3219,7 +3189,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3233,7 +3203,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3242,26 +3212,4 @@ See below for more possible values. ## RELATED LINKS -- [New-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index fb273afaf7766..693f49c5759c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserEventAttachment --- @@ -15,9 +15,6 @@ title: New-MgUserEventAttachment Create new navigation property to attachments for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgUserEventAttachment -EventId -UserId [-ResponseHeadersVa [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +34,7 @@ New-MgUserEventAttachment -EventId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +45,6 @@ New-MgUserEventAttachment -InputObject [-ResponseHeadersVari [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +54,7 @@ New-MgUserEventAttachment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +66,10 @@ This cmdlet has the following aliases, Create new navigation property to attachments for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -93,14 +80,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the New-MgUserEventAttachment Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Code snippet +### EXAMPLE 2 -```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -114,11 +96,6 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the New-MgUserEventAttachment Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -670,7 +647,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: attachment +BODYPARAMETER : attachment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -681,7 +658,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z [Name ]: The attachment's file name. [Size ]: The length of the attachment in bytes. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -704,26 +681,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index bf982bee11f1d..474c7bb76402c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserEventAttachmentUploadSession --- @@ -22,9 +22,6 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserEventAttachmentUploadSession](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventAttachmentUploadSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,6 @@ New-MgUserEventAttachmentUploadSession -EventId -UserId [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +42,6 @@ New-MgUserEventAttachmentUploadSession -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +52,6 @@ New-MgUserEventAttachmentUploadSession -InputObject [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +62,6 @@ New-MgUserEventAttachmentUploadSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,13 +80,15 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, Mail.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, Mail.ReadWrite, | -| Application | Calendars.ReadWrite, Mail.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -154,7 +149,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -509,7 +504,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ATTACHMENTITEM ``: attachmentItem +ATTACHMENTITEM : attachmentItem [(Any) ]: This indicates any property can be added to this object. [AttachmentType ]: attachmentType [ContentId ]: The CID or Content-Id of the attachment for referencing for the in-line attachments using the tag in HTML messages. @@ -524,7 +519,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AttachmentItem ]: attachmentItem [(Any) ]: This indicates any property can be added to this object. @@ -541,7 +536,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -564,28 +559,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserEventAttachmentUploadSession](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession) +- [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md index 9d780707f35e5..1e3af80d0274a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserEventExtension --- @@ -15,9 +15,6 @@ title: New-MgUserEventExtension Create new navigation property to extensions for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventExtension?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,6 @@ New-MgUserEventExtension -EventId -UserId [-ResponseHeadersVar [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +33,6 @@ New-MgUserEventExtension -EventId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +42,6 @@ New-MgUserEventExtension -InputObject [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -57,7 +51,6 @@ New-MgUserEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +62,16 @@ This cmdlet has the following aliases, Create new navigation property to extensions for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -482,7 +485,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -505,27 +508,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index fdd90857b0ac1..25235f7a096b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupCalendarEvent --- @@ -15,9 +15,6 @@ title: Remove-MgGroupCalendarEvent Delete navigation property events for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupCalendarEvent -EventId -GroupId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupCalendarEvent -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 navigation property events for groups -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -431,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md index b5f90f35389fb..8aa8eff0b47d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupCalendarPermanent --- @@ -15,9 +15,6 @@ title: Remove-MgGroupCalendarPermanent Invoke action permanentDelete -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarPermanent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupCalendarPermanent -GroupId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupCalendarPermanent -InputObject [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Invoke action permanentDelete +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -381,27 +386,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupCalendarPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index 1e66ba3b8095e..775e771a71b1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupCalendarPermission --- @@ -15,9 +15,6 @@ title: Remove-MgGroupCalendarPermission Delete navigation property calendarPermissions for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupCalendarPermission -CalendarPermissionId -GroupId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,13 +44,15 @@ This cmdlet has the following aliases, Delete navigation property calendarPermissions for groups -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -431,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index 1a3fc561833cd..7db044598eebf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupEvent --- @@ -15,9 +15,6 @@ title: Remove-MgGroupEvent Delete an event object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupEvent -EventId -GroupId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupEvent -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 an event object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Remove-MgGroupEvent -GroupId $groupId -EventId $eventId -``` -This example shows how to use the Remove-MgGroupEvent Cmdlet. - - ## PARAMETERS ### -Break @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -444,27 +426,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent) +- [](https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md index 07aa2fe25b22b..05b7321489645 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupEventAttachment --- @@ -15,9 +15,6 @@ title: Remove-MgGroupEventAttachment Delete navigation property attachments for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupEventAttachment -AttachmentId -EventId -GroupId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupEventAttachment -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 attachments for groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AttachmentId @@ -421,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -444,27 +449,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md index e9ef6ecfbfe92..c2774c47b6306 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupEventExtension --- @@ -15,9 +15,6 @@ title: Remove-MgGroupEventExtension Delete navigation property extensions for groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventExtension?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupEventExtension -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 extensions for groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -421,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -444,27 +449,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md index 137a13137fe38..d897f7a0aede9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgGroupEventPermanent --- @@ -15,9 +15,6 @@ title: Remove-MgGroupEventPermanent Invoke action permanentDelete -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventPermanent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgGroupEventPermanent -EventId -GroupId [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgGroupEventPermanent -InputObject [-ResponseHeadersV [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Invoke action permanentDelete +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -402,27 +407,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgGroupEventPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index 21d80693c0ffe..0e86a96394d38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlace --- @@ -16,9 +16,6 @@ title: Remove-MgPlace Delete a place object. You can also use this method to delete the following child object types: building, floor, section, or desk. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlace?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgPlace -PlaceId [-IfMatch ] [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgPlace -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,13 +46,13 @@ This cmdlet has the following aliases, Delete a place object. You can also use this method to delete the following child object types: building, floor, section, or desk. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.ReadWrite.All, | +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlace -PlaceId $placeId ## PARAMETERS @@ -389,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -412,28 +407,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace) +- [](https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md index f717c6419e366..725b726152b29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsBuildingCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md index 1c6c84b0a301d..72a9272565978 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMap --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMap Delete the map of a specific building. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsBuildingMap -PlaceId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsBuildingMap -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,14 @@ This cmdlet has the following aliases, Delete the map of a specific building. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlaceAsBuildingMap -PlaceId $placeId + ## PARAMETERS ### -Break @@ -379,7 +382,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -402,28 +405,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap) -- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap) +- [](https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md index 6cbf7a4d4d99a..b74ee1abe8080 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMapFootprint --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMapFootprint Delete navigation property footprints for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsBuildingMapFootprint -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 footprints for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md index 3b249e2dc7582..e66334788a457 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMapLevel --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMapLevel Delete navigation property levels for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-IfMatc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsBuildingMapLevel -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 levels for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md index 06e330ceda6f0..d64a332271aaf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMapLevelFixture --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMapLevelFixture Delete a fixture on a specified floor. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgPlaceAsBuildingMapLevelFixture -InputObject [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,14 @@ This cmdlet has the following aliases, Delete a fixture on a specified floor. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId + ## PARAMETERS ### -Break @@ -422,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,28 +448,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture) -- [Graph API Reference](https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture) +- [](https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md index 1f734fc43b82b..3ebfe617bd94c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMapLevelSection --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMapLevelSection Delete navigation property sections for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgPlaceAsBuildingMapLevelSection -InputObject [-IfMat [-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 sections for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,27 +450,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md index 09b2ae10ca3cb..df9b118b537c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsBuildingMapLevelUnit --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsBuildingMapLevelUnit Delete a unitMap object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsBuildingMapLevelUnit -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,14 @@ This cmdlet has the following aliases, Delete a unitMap object. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId + ## PARAMETERS ### -Break @@ -421,7 +424,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -444,28 +447,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit) +- [](https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md index 84103f0c97423..18760e464741b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsDeskCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsDeskCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsDeskCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md index bb5945301ee03..de81fd2d802ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsFloorCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsFloorCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsFloorCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md index c08d0416ae633..c3ece7aaf210f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsRoomCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md index d7fea5a779f74..1f23ad99b0859 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomListCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomListCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsRoomListCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md index 5674647f27945..440b7c4217763 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomListRoom --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomListRoom Delete navigation property rooms for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsRoomListRoom -PlaceId -RoomId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsRoomListRoom -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 rooms for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md index 800da027df0de..4bff860fdf2dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomListRoomCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomListRoomCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgPlaceAsRoomListRoomCheck -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,27 +450,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md index 81a27eb4732b7..b9ab4f9013cf9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomListWorkspace --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomListWorkspace Delete navigation property workspaces for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-IfMa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsRoomListWorkspace -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 workspaces for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md index 3103b799c51ec..db756b7c3c058 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsRoomListWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsRoomListWorkspaceCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgPlaceAsRoomListWorkspaceCheck -InputObject [-IfMatc [-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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,27 +450,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md index 10204bdef6e8e..7270bc2998402 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsSectionCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsSectionCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsSectionCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md index 1f744c62cc4a8..af2983267f252 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceAsWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceAsWorkspaceCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceAsWorkspaceCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md index 67974d919f3cf..cbea3e576a2ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgPlaceCheck --- @@ -15,9 +15,6 @@ title: Remove-MgPlaceCheck Delete navigation property checkIns for places -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceCheck?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgPlaceCheck -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 checkIns for places +## 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -423,27 +428,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index bdd1edfd3bcce..7ec7e0197d613 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserCalendarGroup --- @@ -15,9 +15,6 @@ title: Remove-MgUserCalendarGroup Delete navigation property calendarGroups for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarGroup?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserCalendarGroup -CalendarGroupId -UserId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserCalendarGroup -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 navigation property calendarGroups for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -``` -This example shows how to use the Remove-MgUserCalendarGroup Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,26 +427,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index 9a5e6e7e1eb85..db31a5077e805 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserCalendarPermanent --- @@ -15,9 +15,6 @@ title: Remove-MgUserCalendarPermanent Invoke action permanentDelete -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarPermanent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserCalendarPermanent -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete1 @@ -37,7 +33,6 @@ Remove-MgUserCalendarPermanent -UserId -CalendarId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity1 @@ -47,7 +42,6 @@ Remove-MgUserCalendarPermanent -InputObject [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -57,7 +51,6 @@ Remove-MgUserCalendarPermanent -InputObject [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,27 +62,14 @@ This cmdlet has the following aliases, Invoke action permanentDelete -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermanent -UserId $userId -``` -This example shows how to use the Remove-MgUserCalendarPermanent Cmdlet. - - ## PARAMETERS ### -Break @@ -432,7 +412,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -455,26 +435,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserCalendarPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index 55f230fc8ab35..ba408ccdedda2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserCalendarPermission --- @@ -15,9 +15,6 @@ title: Remove-MgUserCalendarPermission Delete calendarPermission. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserCalendarPermission -CalendarPermissionId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete1 @@ -37,7 +33,6 @@ Remove-MgUserCalendarPermission -CalendarPermissionId -UserId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity1 @@ -47,7 +42,6 @@ Remove-MgUserCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -57,7 +51,6 @@ Remove-MgUserCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,27 +62,14 @@ This cmdlet has the following aliases, Delete calendarPermission. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -``` -This example shows how to use the Remove-MgUserCalendarPermission Cmdlet. - - ## PARAMETERS ### -Break @@ -480,7 +460,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -503,27 +483,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission) +- [](https://learn.microsoft.com/graph/api/calendarpermission-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index aab5ddfd62bf0..1dfc48fd52b31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserEvent --- @@ -15,9 +15,6 @@ title: Remove-MgUserEvent Delete navigation property events for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserEvent -EventId -UserId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserEvent -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 navigation property events for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEvent -UserId $userId -EventId $eventId -``` -This example shows how to use the Remove-MgUserEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -445,26 +427,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md index 86af544d602eb..2bc0fd4b9aa84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserEventAttachment --- @@ -15,9 +15,6 @@ title: Remove-MgUserEventAttachment Delete navigation property attachments for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventAttachment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserEventAttachment -AttachmentId -EventId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserEventAttachment -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,18 +45,13 @@ This cmdlet has the following aliases, Delete navigation property attachments for users ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId -``` -This example shows how to use the Remove-MgUserEventAttachment Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -435,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -458,26 +448,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md index 438e95f0198f2..2bbbb48ce3b20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserEventExtension --- @@ -15,9 +15,6 @@ title: Remove-MgUserEventExtension Delete navigation property extensions for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventExtension?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserEventExtension -EventId -ExtensionId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserEventExtension -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 extensions for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -421,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -444,27 +449,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index b90bc771c66e8..de5018fc20bda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserEventPermanent --- @@ -15,9 +15,6 @@ title: Remove-MgUserEventPermanent Invoke action permanentDelete -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventPermanent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserEventPermanent -EventId -UserId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserEventPermanent -InputObject [-ResponseHeadersVa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,13 +44,15 @@ This cmdlet has the following aliases, Invoke action permanentDelete -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -387,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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -410,27 +407,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserEventPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index 73518d3f4c6de..00456c4e69f44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgGroupEvent --- @@ -15,12 +15,9 @@ title: Stop-MgGroupEvent This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Stop-MgBetaGroupEvent?view=graph-powershell-beta) +The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. ## SYNTAX @@ -31,7 +28,6 @@ Stop-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariable [-AdditionalProperties ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +38,6 @@ Stop-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +47,6 @@ Stop-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -63,7 +57,6 @@ Stop-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,17 +68,19 @@ This cmdlet has the following aliases, This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. +The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} -**Permissions** +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -118,7 +113,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -167,7 +162,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -521,11 +516,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. [Comment ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -548,28 +543,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent) +- [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index 38d40358e26e8..ddc89e23995c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgUserEvent --- @@ -15,12 +15,9 @@ title: Stop-MgUserEvent This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. - -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Stop-MgBetaUserEvent?view=graph-powershell-beta) +The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. ## SYNTAX @@ -31,7 +28,6 @@ Stop-MgUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +38,6 @@ Stop-MgUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +47,6 @@ Stop-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -63,7 +57,6 @@ Stop-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,22 +68,13 @@ This cmdlet has the following aliases, This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. - -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -101,10 +85,6 @@ $params = @{ # A UPN can also be used as -UserId. Stop-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Stop-MgUserEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -136,7 +116,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -185,7 +165,7 @@ HelpMessage: '' ### -Comment - +. ```yaml Type: System.String @@ -539,11 +519,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. [Comment ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -566,27 +546,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent) +- [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index e51ad4cb4fe10..cfd96567e8c71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgGroupCalendarEvent --- @@ -15,9 +15,6 @@ title: Update-MgGroupCalendarEvent Update an event object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupCalendarEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -46,7 +43,6 @@ Update-MgGroupCalendarEvent -EventId -GroupId [-ResponseHeader [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +52,7 @@ Update-MgGroupCalendarEvent -EventId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -85,7 +81,6 @@ Update-MgGroupCalendarEvent -InputObject [-ResponseHeadersVa [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +90,6 @@ Update-MgGroupCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,18 +101,9 @@ This cmdlet has the following aliases, Update an event object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -130,10 +115,6 @@ $params = @{ Update-MgGroupCalendarEvent -GroupId $groupId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Update-MgGroupCalendarEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1944,12 +1925,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2206,7 +2187,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2462,7 +2443,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2731,7 +2712,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3011,7 +2992,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3069,7 +3050,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3083,14 +3064,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3123,7 +3104,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3137,7 +3118,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3146,27 +3127,5 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent) +- [](https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md index 6c5ab9672711d..1df56be43e8f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgGroupCalendarPermission --- @@ -15,9 +15,6 @@ title: Update-MgGroupCalendarPermission Update the navigation property calendarPermissions in groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgGroupCalendarPermission -CalendarPermissionId -GroupId ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgGroupCalendarPermission -CalendarPermissionId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgGroupCalendarPermission -InputObject [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +56,7 @@ Update-MgGroupCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +68,16 @@ This cmdlet has the following aliases, Update the navigation property calendarPermissions in groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -624,7 +631,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendarPermission +BODYPARAMETER : calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -640,12 +647,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS ``: emailAddress +EMAILADDRESS : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -668,27 +675,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index 0757767badbba..8bc2a82769e45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgGroupEvent --- @@ -15,9 +15,6 @@ title: Update-MgGroupEvent Update the navigation property events in groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -46,7 +43,6 @@ Update-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariabl [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +52,6 @@ Update-MgGroupEvent -EventId -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -85,7 +80,6 @@ Update-MgGroupEvent -InputObject [-ResponseHeadersVariable < [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +89,6 @@ Update-MgGroupEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,13 +100,15 @@ This cmdlet has the following aliases, Update the navigation property events in groups -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | +{{ Add code here }} ## PARAMETERS @@ -1925,12 +1920,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2187,7 +2182,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2443,7 +2438,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2712,7 +2707,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2992,7 +2987,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3050,7 +3045,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3064,14 +3059,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3104,7 +3099,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3118,7 +3113,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3127,27 +3122,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md index e286b3752cb64..ead6c8c2f0d82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgGroupEventExtension --- @@ -15,9 +15,6 @@ title: Update-MgGroupEventExtension Update the navigation property extensions in groups -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupEventExtension?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgGroupEventExtension -EventId -ExtensionId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,6 @@ Update-MgGroupEventExtension -InputObject [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -57,7 +52,6 @@ Update-MgGroupEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +63,16 @@ This cmdlet has the following aliases, Update the navigation property extensions in groups +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -509,7 +513,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -532,27 +536,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index f7ebfb2039228..309b4fb282115 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlace --- @@ -16,9 +16,6 @@ title: Update-MgPlace Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlace?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgPlace -PlaceId [-ResponseHeadersVariable ] [-Label ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgPlace -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,7 @@ Update-MgPlace -InputObject [-ResponseHeadersVariable ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,6 @@ Update-MgPlace -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,58 @@ This cmdlet has the following aliases, Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property. -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Place.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | Place.ReadWrite.All, | +### EXAMPLE 1 -## EXAMPLES -### Example 1: Code snippet +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.building" + tags = @( + "most popular building" +) +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.floor" + isWheelChairAccessible = $true + sortOrder = +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params -```powershell +### EXAMPLE 3 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.section" + label = "discuss area" +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +### EXAMPLE 4 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.desk" + mode = @{ + "@odata.type" = "microsoft.graph.dropInPlaceMode" + } +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +### EXAMPLE 5 Import-Module Microsoft.Graph.Calendar @@ -103,9 +138,20 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -``` -This example shows how to use the Update-MgPlace Cmdlet. +### EXAMPLE 6 +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.workspace" + nickname = "Conf Room" + building = "1" + label = "100" + capacity = + isWheelChairAccessible = $false +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params ## PARAMETERS @@ -740,7 +786,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -749,7 +795,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: place +BODYPARAMETER : place [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -791,7 +837,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -800,7 +846,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -823,27 +869,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace) -- [Graph API Reference](https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace) +- [](https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md index 148aefae7163a..9e12e5f9386ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsBuildingCheck -InputObject [-ResponseHeaders [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsBuildingCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md index 1af8f85c2523b..f676c04223915 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMap --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMap Update the navigation property map in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgPlaceAsBuildingMap -PlaceId [-ResponseHeadersVariable [-Levels ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -39,7 +36,7 @@ Update-MgPlaceAsBuildingMap -InputObject [-PlaceId ] [-Footprints ] [-Id ] [-Levels ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -49,7 +46,6 @@ Update-MgPlaceAsBuildingMap -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +55,7 @@ Update-MgPlaceAsBuildingMap -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +67,16 @@ This cmdlet has the following aliases, Update the navigation property map in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -570,7 +576,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: buildingMap +BODYPARAMETER : buildingMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -612,7 +618,7 @@ It corresponds to footprint.geojson in IMDF format. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -660,27 +666,4 @@ Read-only. ## RELATED LINKS -- [Update-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md index 9e45380edfbb0..ff3e502de5860 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMapFootprint --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMapFootprint Update the navigation property footprints in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,7 @@ Update-MgPlaceAsBuildingMapFootprint -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +53,6 @@ Update-MgPlaceAsBuildingMapFootprint -InputObject -BodyParam [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +64,16 @@ This cmdlet has the following aliases, Update the navigation property footprints in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -509,7 +514,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -532,27 +537,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md index 3c1dfd6eb35db..86de94669e93e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMapLevel --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMapLevel Update the navigation property levels in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgPlaceAsBuildingMapLevel -InputObject [-PlaceId ] [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgPlaceAsBuildingMapLevel -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property levels in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -629,7 +635,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: levelMap +BODYPARAMETER : levelMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -661,7 +667,7 @@ Supports upsert. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -698,27 +704,4 @@ Read-only. ## RELATED LINKS -- [Update-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md index 7af4689708cb7..d19f96ad64ecb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMapLevelFixture --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMapLevelFixture Update the properties of an existing fixtureMap object in IMDF format on a specified floor, or create one if it doesn't exist. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +44,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -InputObject [-Place [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +54,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +66,30 @@ This cmdlet has the following aliases, Update the properties of an existing fixtureMap object in IMDF format on a specified floor, or create one if it doesn't exist. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + placeId = "67149ec1-4b99-42d4-88a4-d92cd23cb606" + properties = '{"id":"005eb3b8-c95d-4d35-a8a0-22d3cb4d6002","type":"Feature","feature_type":"fixture","geometry":{"type":"Polygon","coordinates":[[[-121.8889415,37.3295396],[-121.8889137,37.329503],[-121.8889082,37.3294956],[-121.888907,37.3294941],[-121.8888551,37.3295189],[-121.8888895,37.3295644],[-121.8889415,37.3295396]]]},"properties":{"name":{"en":"Test Fixture update"},"level_id":"e537d463-475b-43c3-a650-184566c68bc9","display_point":{"type":"Point","coordinates":[-121.8888983,37.3295292]}}}' +} + +Update-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + placeId = "67149ec1-4b99-42d4-88a4-d92cd23cb606" + properties = '{"id":"005eb3b8-c95d-4d35-a8a0-22d3cb4d6002","type":"Feature","feature_type":"fixture","geometry":{"type":"Polygon","coordinates":[[[-121.8889415,37.3295396],[-121.8889137,37.329503],[-121.8889082,37.3294956],[-121.888907,37.3294941],[-121.8888551,37.3295189],[-121.8888895,37.3295644],[-121.8889415,37.3295396]]]},"properties":{"name":{"en":"Test Fixture 01"},"level_id":"e537d463-475b-43c3-a650-184566c68bc9","display_point":{"type":"Point","coordinates":[-121.8888983,37.3295292]}}}' +} + +Update-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId -BodyParameter $params + ## PARAMETERS ### -AdditionalProperties @@ -565,14 +585,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 ``: fixtureMap +BODYPARAMETER : fixtureMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -595,28 +615,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture) -- [Graph API Reference](https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture) +- [](https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md index 3dd1d8f9682ed..79308094d3fac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMapLevelSection --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMapLevelSection Update the navigation property sections in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Id ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,6 @@ Update-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +44,7 @@ Update-MgPlaceAsBuildingMapLevelSection -InputObject [-Place [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsBuildingMapLevelSection -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property sections in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -566,14 +571,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: sectionMap +BODYPARAMETER : sectionMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the section to which this sectionMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -596,27 +601,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md index 7099def187b0b..fc0b7c9f7f6d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsBuildingMapLevelUnit --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsBuildingMapLevelUnit Update the properties of an existing unitMap object in IMDF format on a specified floor, or create one if it doesn't exist. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +44,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +54,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +66,29 @@ This cmdlet has the following aliases, Update the properties of an existing unitMap object in IMDF format on a specified floor, or create one if it doesn't exist. +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + placeId = $null + properties = '{"id":"005eb3b8-c95d-4d35-a8a0-22d3cb4d6542","type":"Feature","feature_type":"unit","geometry":{"type":"Polygon","coordinates":[[[-121.8889415,37.3295396],[-121.8889137,37.329503],[-121.8889082,37.3294956],[-121.888907,37.3294941],[-121.8888551,37.3295189],[-121.8888895,37.3295644],[-121.8889415,37.3295396]]]},"properties":{"name":{"en":"Test room from Test Floor 1 (120.3)"},"level_id":"e537d463-475b-43c3-a650-184566c68bc9","display_point":{"type":"Point","coordinates":[-121.8888983,37.3295292]},"category":"room"}}' +} + +Update-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + properties = '{"id":"005eb3b8-c95d-4d35-a8a0-22d3cb4d6996","type":"Feature","feature_type":"unit","geometry":{"type":"Polygon","coordinates":[[[-121.8889415,37.3295396],[-121.8889137,37.329503],[-121.8889082,37.3294956],[-121.888907,37.3294941],[-121.8888551,37.3295189],[-121.8888895,37.3295644],[-121.8889415,37.3295396]]]},"properties":{"name":{"en":"Test Create room111111111111"},"level_id":"e537d463-475b-43c3-a650-184566c68bc9","display_point":{"type":"Point","coordinates":[-121.8888983,37.3295292]},"category":"room"}}' +} + +Update-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId -BodyParameter $params + ## PARAMETERS ### -AdditionalProperties @@ -565,14 +584,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 ``: unitMap +BODYPARAMETER : unitMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the place (such as a room) to which this unitMap belongs. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -595,28 +614,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit) +- [](https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md index 45fcb5c1c3d62..cd7c6fdb4fbf2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsDeskCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsDeskCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsDeskCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsDeskCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md index 7f7e9b381ccfd..1a9633e8a4abd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsFloorCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsFloorCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsFloorCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsFloorCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md index 20082643487ed..37123b67ef59a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsRoomCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md index 80a455d3078a3..f62cb0f4344c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomListCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomListCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsRoomListCheck -InputObject [-ResponseHeaders [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsRoomListCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md index 76020744ed504..1c86ba2937c47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomListRoom --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomListRoom Update the navigation property rooms in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgPlaceAsRoomListRoom -PlaceId -RoomId [-ResponseHeader [-Tags ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -50,7 +47,6 @@ Update-MgPlaceAsRoomListRoom -InputObject [-PlaceId [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -60,7 +56,6 @@ Update-MgPlaceAsRoomListRoom -PlaceId -RoomId -BodyParameter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -70,7 +65,6 @@ Update-MgPlaceAsRoomListRoom -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property rooms in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1067,7 +1071,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -1076,7 +1080,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: room +BODYPARAMETER : room [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1131,7 +1135,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -1140,7 +1144,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1163,27 +1167,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md index f63d6cc1f63fd..f91f782c9c42d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomListRoomCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomListRoomCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-CalendarEventId ] [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId -RoomId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,6 @@ Update-MgPlaceAsRoomListRoomCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +55,7 @@ Update-MgPlaceAsRoomListRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +67,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -568,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -577,7 +583,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -600,27 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md index e7890b750d84e..a8f59617376cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomListWorkspace --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomListWorkspace Update the navigation property workspaces in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ParentId ] [-Phone ] [-PlaceId1 ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -47,7 +44,6 @@ Update-MgPlaceAsRoomListWorkspace -InputObject [-PlaceId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -57,7 +53,7 @@ Update-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +63,7 @@ Update-MgPlaceAsRoomListWorkspace -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +75,16 @@ This cmdlet has the following aliases, Update the navigation property workspaces in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -903,7 +909,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -912,7 +918,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER ``: workspace +BODYPARAMETER : workspace [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -963,7 +969,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES ``: outlookGeoCoordinates +GEOCOORDINATES : outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -972,7 +978,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -995,27 +1001,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md index 0cad42efa29d3..2aff9987ddce7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsRoomListWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsRoomListWorkspaceCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-CalendarEventId ] [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,6 @@ Update-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +46,6 @@ Update-MgPlaceAsRoomListWorkspaceCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -60,7 +55,7 @@ Update-MgPlaceAsRoomListWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -72,6 +67,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -569,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -578,7 +583,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -601,27 +606,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md index 1f1d75912641b..83692a2c82037 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsSectionCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsSectionCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsSectionCheck -InputObject [-ResponseHeadersV [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsSectionCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md index 9ce36b14610a9..70f98f3f820c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceAsWorkspaceCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceAsWorkspaceCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceAsWorkspaceCheck -InputObject [-ResponseHeader [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgPlaceAsWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +578,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md index 47c736ae25ecf..79899eb5d8b92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgPlaceCheck --- @@ -15,9 +15,6 @@ title: Update-MgPlaceCheck Update the navigation property checkIns in places -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceCheck?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgPlaceCheck -InputObject [-ResponseHeadersVariable < [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,6 @@ Update-MgPlaceCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,6 +65,16 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -541,7 +545,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: checkInClaim +BODYPARAMETER : checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -550,7 +554,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -573,27 +577,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index ec0b7b4c7f61d..3f63c42db6bc8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserCalendarGroup --- @@ -15,9 +15,6 @@ title: Update-MgUserCalendarGroup Update the navigation property calendarGroups in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserCalendarGroup?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgUserCalendarGroup -CalendarGroupId -UserId [-Calendars ] [-ChangeKey ] [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgUserCalendarGroup -CalendarGroupId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,6 @@ Update-MgUserCalendarGroup -InputObject [-ResponseHeadersVar [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +55,7 @@ Update-MgUserCalendarGroup -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +67,10 @@ This cmdlet has the following aliases, Update the navigation property calendarGroups in users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -91,11 +79,6 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params -``` -This example shows how to use the Update-MgUserCalendarGroup Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -627,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 ``: calendarGroup +BODYPARAMETER : calendarGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1154,7 +1137,7 @@ Nullable. Read-only. Nullable. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1177,26 +1160,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md index 0ceb62ae9ddbd..95876e38cd266 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserCalendarPermission --- @@ -15,9 +15,6 @@ title: Update-MgUserCalendarPermission Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserCalendarPermission?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateExpanded1 @@ -39,7 +36,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update1 @@ -49,7 +46,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +56,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded1 @@ -70,7 +67,7 @@ Update-MgUserCalendarPermission -InputObject [-ResponseHeade [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -81,7 +78,7 @@ Update-MgUserCalendarPermission -InputObject [-ResponseHeade [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity1 @@ -91,7 +88,7 @@ Update-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -101,7 +98,7 @@ Update-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -114,9 +111,8 @@ This cmdlet has the following aliases, Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.Calendar @@ -126,10 +122,6 @@ $params = @{ Update-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -BodyParameter $params -``` -This example shows how to use the Update-MgUserCalendarPermission Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -842,7 +834,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: calendarPermission +BODYPARAMETER : calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -858,12 +850,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS ``: emailAddress +EMAILADDRESS : emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -886,27 +878,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission) -- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission) +- [](https://learn.microsoft.com/graph/api/calendarpermission-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index 7c2df9086cad4..eb6154bdda4e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserEvent --- @@ -15,9 +15,6 @@ title: Update-MgUserEvent Update the navigation property events in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -46,7 +43,6 @@ Update-MgUserEvent -EventId -UserId [-ResponseHeadersVariable [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +52,6 @@ Update-MgUserEvent -EventId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -85,7 +80,6 @@ Update-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +89,6 @@ Update-MgUserEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -107,18 +100,10 @@ This cmdlet has the following aliases, Update the navigation property events in users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadWrite, | -| Delegated (personal Microsoft account) | Calendars.ReadWrite, | -| Application | Calendars.ReadWrite, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 + Import-Module Microsoft.Graph.Calendar $params = @{ @@ -141,11 +126,6 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params -``` -This example shows how to use the Update-MgUserEvent Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - ## PARAMETERS @@ -1957,12 +1937,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY ``: itemBody +BODY : itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER ``: event +BODYPARAMETER : event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2219,7 +2199,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR ``: calendar +CALENDAR : calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2475,7 +2455,7 @@ Nullable. Read-only. Nullable. -END ``: dateTimeTimeZone +END : 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'. @@ -2744,7 +2724,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3024,7 +3004,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION ``: location +LOCATION : 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. @@ -3082,7 +3062,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING ``: onlineMeetingInfo +ONLINEMEETING : onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3096,14 +3076,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER ``: recipient +ORGANIZER : recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE ``: patternedRecurrence +RECURRENCE : patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3136,7 +3116,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS ``: responseStatus +RESPONSESTATUS : responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3150,7 +3130,7 @@ Nullable. Read-only. [Value ]: A property value. -START ``: dateTimeTimeZone +START : 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'. @@ -3159,26 +3139,4 @@ See below for more possible values. ## RELATED LINKS -- [Update-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md index 18e0366177dd1..86c7093198954 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Calendar-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension Locale: en-US Module Name: Microsoft.Graph.Calendar -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserEventExtension --- @@ -15,9 +15,6 @@ title: Update-MgUserEventExtension Update the navigation property extensions in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserEventExtension?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgUserEventExtension -EventId -ExtensionId -UserId ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgUserEventExtension -EventId -ExtensionId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +43,6 @@ Update-MgUserEventExtension -InputObject [-ResponseHeadersVa [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -57,7 +52,6 @@ Update-MgUserEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -69,6 +63,16 @@ This cmdlet has the following aliases, Update the navigation property extensions in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -509,7 +513,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -532,27 +536,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension) From 2ecfcaf2e86db2517c062fef687a211ba938715e Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:37 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- .../Get-MgGroupCalendar.md | 24 +++++++++- .../Get-MgGroupCalendarEvent.md | 24 +++++++++- .../Get-MgGroupCalendarPermission.md | 24 +++++++++- .../Get-MgGroupCalendarPermissionCount.md | 24 +++++++++- .../Get-MgGroupCalendarSchedule.md | 30 +++++++++++-- .../Get-MgGroupCalendarView.md | 22 ++++++++++ .../Get-MgGroupEvent.md | 24 +++++++++- .../Get-MgGroupEventAttachment.md | 24 +++++++++- .../Get-MgGroupEventAttachmentCount.md | 24 +++++++++- .../Get-MgGroupEventCalendar.md | 24 +++++++++- .../Get-MgGroupEventCount.md | 24 +++++++++- .../Get-MgGroupEventDelta.md | 24 +++++++++- .../Get-MgGroupEventExtension.md | 24 +++++++++- .../Get-MgGroupEventExtensionCount.md | 24 +++++++++- .../Get-MgGroupEventInstance.md | 22 ++++++++++ .../Get-MgGroupEventInstanceDelta.md | 24 +++++++++- .../Get-MgPlaceAsBuilding.md | 28 ++++++++++-- .../Get-MgPlaceAsBuildingCheck.md | 24 +++++++++- .../Get-MgPlaceAsBuildingCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMap.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapFootprint.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapFootprintCount.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevel.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevelCount.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevelFixture.md | 24 +++++++++- ...t-MgPlaceAsBuildingMapLevelFixtureCount.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevelSection.md | 24 +++++++++- ...t-MgPlaceAsBuildingMapLevelSectionCount.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevelUnit.md | 24 +++++++++- .../Get-MgPlaceAsBuildingMapLevelUnitCount.md | 24 +++++++++- .../Get-MgPlaceAsDesk.md | 28 ++++++++++-- .../Get-MgPlaceAsDeskCheck.md | 24 +++++++++- .../Get-MgPlaceAsDeskCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsFloor.md | 28 ++++++++++-- .../Get-MgPlaceAsFloorCheck.md | 24 +++++++++- .../Get-MgPlaceAsFloorCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsRoom.md | 28 ++++++++++-- .../Get-MgPlaceAsRoomCheck.md | 24 +++++++++- .../Get-MgPlaceAsRoomCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsRoomList.md | 24 +++++++++- .../Get-MgPlaceAsRoomListCheck.md | 24 +++++++++- .../Get-MgPlaceAsRoomListCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsRoomListRoom.md | 24 +++++++++- .../Get-MgPlaceAsRoomListRoomCheck.md | 24 +++++++++- .../Get-MgPlaceAsRoomListRoomCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsRoomListRoomCount.md | 24 +++++++++- .../Get-MgPlaceAsRoomListWorkspace.md | 24 +++++++++- .../Get-MgPlaceAsRoomListWorkspaceCheck.md | 24 +++++++++- ...-MgPlaceAsRoomListWorkspaceCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsRoomListWorkspaceCount.md | 24 +++++++++- .../Get-MgPlaceAsSection.md | 28 ++++++++++-- .../Get-MgPlaceAsSectionCheck.md | 24 +++++++++- .../Get-MgPlaceAsSectionCheckInCount.md | 24 +++++++++- .../Get-MgPlaceAsWorkspace.md | 28 ++++++++++-- .../Get-MgPlaceAsWorkspaceCheck.md | 24 +++++++++- .../Get-MgPlaceAsWorkspaceCheckInCount.md | 24 +++++++++- .../Get-MgPlaceCheck.md | 24 +++++++++- .../Get-MgPlaceCheckInCount.md | 24 +++++++++- .../Get-MgPlaceCount.md | 22 ++++++++++ .../Get-MgPlaceCountAsBuilding.md | 22 ++++++++++ .../Get-MgPlaceCountAsDesk.md | 22 ++++++++++ .../Get-MgPlaceCountAsFloor.md | 22 ++++++++++ .../Get-MgPlaceCountAsRoom.md | 22 ++++++++++ .../Get-MgPlaceCountAsRoomList.md | 22 ++++++++++ .../Get-MgPlaceCountAsSection.md | 22 ++++++++++ .../Get-MgPlaceCountAsWorkspace.md | 22 ++++++++++ .../Get-MgUserCalendar.md | 24 +++++++++- .../Get-MgUserCalendarCount.md | 24 +++++++++- .../Get-MgUserCalendarEvent.md | 22 ++++++++++ .../Get-MgUserCalendarGroup.md | 24 +++++++++- .../Get-MgUserCalendarGroupCalendar.md | 22 ++++++++++ .../Get-MgUserCalendarGroupCount.md | 24 +++++++++- .../Get-MgUserCalendarPermission.md | 24 +++++++++- .../Get-MgUserCalendarPermissionCount.md | 24 +++++++++- .../Get-MgUserCalendarView.md | 22 ++++++++++ .../Get-MgUserDefaultCalendar.md | 24 +++++++++- .../Get-MgUserDefaultCalendarEvent.md | 22 ++++++++++ .../Get-MgUserEvent.md | 24 +++++++++- .../Get-MgUserEventAttachment.md | 24 +++++++++- .../Get-MgUserEventAttachmentCount.md | 24 +++++++++- .../Get-MgUserEventCalendar.md | 24 +++++++++- .../Get-MgUserEventCount.md | 24 +++++++++- .../Get-MgUserEventDelta.md | 24 +++++++++- .../Get-MgUserEventExtension.md | 24 +++++++++- .../Get-MgUserEventExtensionCount.md | 24 +++++++++- .../Get-MgUserEventInstance.md | 22 ++++++++++ .../Get-MgUserEventInstanceDelta.md | 24 +++++++++- .../Invoke-MgAcceptGroupEvent.md | 26 ++++++++++- .../Invoke-MgAcceptGroupEventTentatively.md | 28 ++++++++++-- .../Invoke-MgAcceptUserEvent.md | 26 ++++++++++- .../Invoke-MgAcceptUserEventTentatively.md | 28 ++++++++++-- .../Invoke-MgCalendarGroupCalendar.md | 24 +++++++++- ...UserCalendarAllowedCalendarSharingRoles.md | 24 +++++++++- .../Invoke-MgDeclineGroupEvent.md | 28 ++++++++++-- .../Invoke-MgDeclineUserEvent.md | 28 ++++++++++-- .../Invoke-MgDescendantPlace.md | 24 +++++++++- .../Invoke-MgDismissGroupEventReminder.md | 24 +++++++++- .../Invoke-MgDismissUserEventReminder.md | 24 +++++++++- .../Invoke-MgForwardGroupEvent.md | 34 +++++++++++--- .../Invoke-MgForwardUserEvent.md | 34 +++++++++++--- .../Invoke-MgSnoozeGroupEventReminder.md | 28 ++++++++++-- .../Invoke-MgSnoozeUserEventReminder.md | 28 ++++++++++-- .../Microsoft.Graph.Calendar.md | 19 ++++++++ .../New-MgGroupCalendarEvent.md | 44 ++++++++++++++----- .../New-MgGroupCalendarPermission.md | 28 ++++++++++-- .../New-MgGroupEvent.md | 44 ++++++++++++++----- .../New-MgGroupEventAttachment.md | 26 ++++++++++- ...New-MgGroupEventAttachmentUploadSession.md | 28 ++++++++++-- .../New-MgGroupEventExtension.md | 24 +++++++++- .../Microsoft.Graph.Calendar/New-MgPlace.md | 28 ++++++++++-- .../New-MgPlaceAsBuildingCheck.md | 26 ++++++++++- .../New-MgPlaceAsBuildingMapFootprint.md | 24 +++++++++- .../New-MgPlaceAsBuildingMapLevel.md | 26 ++++++++++- .../New-MgPlaceAsBuildingMapLevelFixture.md | 26 ++++++++++- .../New-MgPlaceAsBuildingMapLevelSection.md | 26 ++++++++++- .../New-MgPlaceAsBuildingMapLevelUnit.md | 26 ++++++++++- .../New-MgPlaceAsDeskCheck.md | 26 ++++++++++- .../New-MgPlaceAsFloorCheck.md | 26 ++++++++++- .../New-MgPlaceAsRoomCheck.md | 26 ++++++++++- .../New-MgPlaceAsRoomListCheck.md | 26 ++++++++++- .../New-MgPlaceAsRoomListRoom.md | 30 +++++++++++-- .../New-MgPlaceAsRoomListRoomCheck.md | 26 ++++++++++- .../New-MgPlaceAsRoomListWorkspace.md | 30 +++++++++++-- .../New-MgPlaceAsRoomListWorkspaceCheck.md | 26 ++++++++++- .../New-MgPlaceAsSectionCheck.md | 26 ++++++++++- .../New-MgPlaceAsWorkspaceCheck.md | 26 ++++++++++- .../New-MgPlaceCheck.md | 26 ++++++++++- .../New-MgUserCalendar.md | 28 ++++++++++-- .../New-MgUserCalendarEvent.md | 44 ++++++++++++++----- .../New-MgUserCalendarGroup.md | 26 ++++++++++- .../New-MgUserCalendarGroupCalendar.md | 28 ++++++++++-- .../New-MgUserCalendarPermission.md | 28 ++++++++++-- .../New-MgUserDefaultCalendarEvent.md | 44 ++++++++++++++----- .../New-MgUserEvent.md | 44 ++++++++++++++----- .../New-MgUserEventAttachment.md | 26 ++++++++++- .../New-MgUserEventAttachmentUploadSession.md | 28 ++++++++++-- .../New-MgUserEventExtension.md | 24 +++++++++- .../Remove-MgGroupCalendarEvent.md | 24 +++++++++- .../Remove-MgGroupCalendarPermanent.md | 24 +++++++++- .../Remove-MgGroupCalendarPermission.md | 24 +++++++++- .../Remove-MgGroupEvent.md | 24 +++++++++- .../Remove-MgGroupEventAttachment.md | 24 +++++++++- .../Remove-MgGroupEventExtension.md | 24 +++++++++- .../Remove-MgGroupEventPermanent.md | 24 +++++++++- .../Remove-MgPlace.md | 24 +++++++++- .../Remove-MgPlaceAsBuildingCheck.md | 24 +++++++++- .../Remove-MgPlaceAsBuildingMap.md | 24 +++++++++- .../Remove-MgPlaceAsBuildingMapFootprint.md | 24 +++++++++- .../Remove-MgPlaceAsBuildingMapLevel.md | 24 +++++++++- ...Remove-MgPlaceAsBuildingMapLevelFixture.md | 24 +++++++++- ...Remove-MgPlaceAsBuildingMapLevelSection.md | 24 +++++++++- .../Remove-MgPlaceAsBuildingMapLevelUnit.md | 24 +++++++++- .../Remove-MgPlaceAsDeskCheck.md | 24 +++++++++- .../Remove-MgPlaceAsFloorCheck.md | 24 +++++++++- .../Remove-MgPlaceAsRoomCheck.md | 24 +++++++++- .../Remove-MgPlaceAsRoomListCheck.md | 24 +++++++++- .../Remove-MgPlaceAsRoomListRoom.md | 24 +++++++++- .../Remove-MgPlaceAsRoomListRoomCheck.md | 24 +++++++++- .../Remove-MgPlaceAsRoomListWorkspace.md | 24 +++++++++- .../Remove-MgPlaceAsRoomListWorkspaceCheck.md | 24 +++++++++- .../Remove-MgPlaceAsSectionCheck.md | 24 +++++++++- .../Remove-MgPlaceAsWorkspaceCheck.md | 24 +++++++++- .../Remove-MgPlaceCheck.md | 24 +++++++++- .../Remove-MgUserCalendarGroup.md | 24 +++++++++- .../Remove-MgUserCalendarPermanent.md | 24 +++++++++- .../Remove-MgUserCalendarPermission.md | 24 +++++++++- .../Remove-MgUserEvent.md | 24 +++++++++- .../Remove-MgUserEventAttachment.md | 24 +++++++++- .../Remove-MgUserEventExtension.md | 24 +++++++++- .../Remove-MgUserEventPermanent.md | 24 +++++++++- .../Stop-MgGroupEvent.md | 38 ++++++++++++---- .../Stop-MgUserEvent.md | 38 ++++++++++++---- .../Update-MgGroupCalendarEvent.md | 44 ++++++++++++++----- .../Update-MgGroupCalendarPermission.md | 28 ++++++++++-- .../Update-MgGroupEvent.md | 44 ++++++++++++++----- .../Update-MgGroupEventExtension.md | 24 +++++++++- .../Update-MgPlace.md | 30 +++++++++++-- .../Update-MgPlaceAsBuildingCheck.md | 26 ++++++++++- .../Update-MgPlaceAsBuildingMap.md | 26 ++++++++++- .../Update-MgPlaceAsBuildingMapFootprint.md | 24 +++++++++- .../Update-MgPlaceAsBuildingMapLevel.md | 26 ++++++++++- ...Update-MgPlaceAsBuildingMapLevelFixture.md | 26 ++++++++++- ...Update-MgPlaceAsBuildingMapLevelSection.md | 26 ++++++++++- .../Update-MgPlaceAsBuildingMapLevelUnit.md | 26 ++++++++++- .../Update-MgPlaceAsDeskCheck.md | 26 ++++++++++- .../Update-MgPlaceAsFloorCheck.md | 26 ++++++++++- .../Update-MgPlaceAsRoomCheck.md | 26 ++++++++++- .../Update-MgPlaceAsRoomListCheck.md | 26 ++++++++++- .../Update-MgPlaceAsRoomListRoom.md | 30 +++++++++++-- .../Update-MgPlaceAsRoomListRoomCheck.md | 26 ++++++++++- .../Update-MgPlaceAsRoomListWorkspace.md | 30 +++++++++++-- .../Update-MgPlaceAsRoomListWorkspaceCheck.md | 26 ++++++++++- .../Update-MgPlaceAsSectionCheck.md | 26 ++++++++++- .../Update-MgPlaceAsWorkspaceCheck.md | 26 ++++++++++- .../Update-MgPlaceCheck.md | 26 ++++++++++- .../Update-MgUserCalendarGroup.md | 26 ++++++++++- .../Update-MgUserCalendarPermission.md | 28 ++++++++++-- .../Update-MgUserEvent.md | 44 ++++++++++++++----- .../Update-MgUserEventExtension.md | 24 +++++++++- 199 files changed, 4757 insertions(+), 382 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md index 1369dfced9185..311aee2db7f96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -368,3 +368,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 0fa90f108b59c..44779623c95e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -580,3 +580,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md index 6527d9bdc9bf9..1eb135254ade1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md index 488b13a6872bb..3cc51a8b1139f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index 3fbce2e9e76d9..5bf02809a4c2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AvailabilityViewInterval ]: [EndTime ]: dateTimeTimeZone @@ -558,13 +558,13 @@ See below for more possible values. [Schedules ]: [StartTime ]: dateTimeTimeZone -ENDTIME : dateTimeTimeZone +ENDTIME ``: 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -584,7 +584,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -STARTTIME : dateTimeTimeZone +STARTTIME ``: 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'. @@ -595,3 +595,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule) - [](https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md index b897f482c7b6a..b9aa9d905fef7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md @@ -527,3 +527,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index 54f81ee1c0cf4..1a4651cc1d59c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -550,7 +550,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -576,3 +576,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent) - [](https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md index 75dc6089df4d1..288047994993b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md @@ -586,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -610,3 +610,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index 36203460497c5..27eb583ac31f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md index 5d3d0aa12ef67..088f76deadae0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md @@ -367,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -391,3 +391,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index 6e98b8f1eaaae..56a12ebf55d58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index 176bcd2e7ec82..a1086ba9fb9ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -589,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -614,3 +614,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta) - [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md index 8d5f72d9bfaf0..9d7502b5791b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md @@ -586,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -611,3 +611,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension) - [](https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md index 344f718aea472..c91220a22978e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index d4aefd3a196e5..77419883c082d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -553,3 +553,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md index ff8ed6178ac9d..a6f39fc842689 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -636,3 +636,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta) - [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md index 1e45bf97c8327..05e2dc5231228 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsBuilding ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md index 3f13c5a3324ef..7e454156392d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md index 4f1311fa51ded..cdde861c81e28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md index 712705575fd69..6f15678f1c92c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -365,3 +365,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap) - [](https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md index e5f7ef40fb739..afea21e5c7b26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint) - [](https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md index 1cdca752d712f..39b7629fafa9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md index 0aa63b62c673f..6f67b6de0049f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel) - [](https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md index 6cfa4d32d9d08..8eafa5843f05f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md index 4b96ebc331fb6..4a1d350bcaded 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -605,3 +605,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture) - [](https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md index 4c248dc703abf..fb1574b6e3594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md index 4ec4b28d9af66..24be1774fb451 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -605,3 +605,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection) - [](https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md index 0523b5d5aefc1..8766280e9bb68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md index 793cf9589f802..b09e02c6c3a14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -605,3 +605,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit) - [](https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md index c11586d6a7e97..cdccb71f58635 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md index 4981d7a00d58e..cd6cebf580b7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsDesk ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md index a31a22f1a968e..fc8383f38c0f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md index b9e6948ec7adf..831aed8e79275 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md index 1ef19adb55f61..e6fc52fcb47ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsFloor ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md index 5f5e76ba646d2..9330763f87980 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md index f6fe62aa79b35..fef1cf4f55584 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md index f768afd108380..5acb23cffad2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsRoom ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md index c3f1d962440b4..52dbd2a8c5791 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md index c11af1779ca2e..717fc76a9f97e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md index 96e175b84ef0a..a25e7ed8e3467 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist) - [](https://learn.microsoft.com/graph/api/place-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md index bf66d8b709ed2..fbc2b2fe7f36b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md index 7eca52a05fb71..d27837a4f380c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md index 905a3d4ce5b20..46a79fa6b004c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -576,3 +576,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md index 0b0148cf911a1..bc206ab0d2020 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -604,3 +604,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md index 93db329ef11cd..e2e5398c9e20b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md index 5decf5d5582d5..afe5304caf6f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md index 6a58781e784cb..cf6a2a1b43300 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md @@ -552,7 +552,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -576,3 +576,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md index 4b9c3e38eea8b..bd2e2471391a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -604,3 +604,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md index 04064073f30af..3ac0406d44019 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -386,3 +386,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md index 2d3bd815cc0d6..21c34d84c0453 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md index 77cdcd6e4bcd2..2d2907ada776a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsSection ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md index 7591d163ccad3..dec98662baa5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md index 4cf423ab6933b..d0e7aa3591f2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md index d95f4b128a524..83d35fe0c0ed4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md @@ -14,7 +14,7 @@ title: Get-MgPlaceAsWorkspace ## SYNOPSIS Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## SYNTAX @@ -55,7 +55,7 @@ This cmdlet has the following aliases, ## DESCRIPTION Get a collection of the specified type of place objects defined in a tenant. -You can do the following for a given tenant:\r\n- List all buildings.\r\n- List all floors.\r\n- List all sections.\r\n- List all desks.\r\n- List all rooms.\r\n- List all workspaces.\r\n- List all room lists.\r\n- List rooms in a specific room list.\r\n- List workspaces in a specific room list. +You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES @@ -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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace) - [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md index 65cda17bdef05..8a920682f14dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -577,3 +577,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md index 58e1235a29093..0ed91b22eb6ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md index 58874eca4a5e8..11475f8691972 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck) - [](https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md index 30c685d90344a..61712f607d3c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md index 8646b90055fc2..6aaac054752cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index 4a23d0cdc5592..a74dbe1624f69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index 96fd3b3754f8b..d6e05c7fff738 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index f9f2809348384..a00fc511f0c3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index 30ac610d0730f..c8e6f815aa430 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index 0d9fb0ff49028..4d51a7847b903 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index ce9cb1f0b4581..b75c217e821a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index 0cb175f5cba9b..521d13bdde0d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md index ca9430304962c..1a5c7da8b7d83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index f5afd0ebd8356..0aeac83da072d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index 871075e8459e0..d062dcef6d268 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -504,3 +504,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index ef13b929dc26d..b87285eaa961b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index 3df36e03a7603..00983a389d616 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -504,3 +504,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index 72cd4ada10f23..98799964cebb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md index 4d654fbb07d48..e37c463dcc0a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md @@ -680,7 +680,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -706,3 +706,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission) - [](https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/calendar-list-calendarpermissions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md index 654240237096c..addb802471489 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md @@ -391,7 +391,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index b4685da4f5fae..ae9e0a2e43e63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -558,3 +558,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md index b619d11b1b043..dcc42b0548c31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md @@ -343,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -367,3 +367,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index 08e52b71dda58..4a72a2250205f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -483,3 +483,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index e633ccf4877f2..9270cd9cc1aa3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -564,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -588,3 +588,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md index 18902f3401711..b0011dfdbad5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md @@ -585,7 +585,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -609,3 +609,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index 36404a60d51b2..23c014b5b4694 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md index 203565af1c86b..cd244f2f8f6d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md @@ -367,7 +367,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -391,3 +391,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index 9a2065ed72376..2e63e211231e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -364,3 +364,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index 5181ab2748972..b8bc05592f16d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -589,7 +589,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -614,3 +614,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta) - [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md index 4ef3d111f14b2..6f0fb9a06a701 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md @@ -586,7 +586,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -610,3 +610,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md index 68a8bf4e83ad4..7a9c4d67d2b5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 246772a9b0c93..4d09eb6cd59c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -552,3 +552,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md index 627ef79a3a40e..43406fed9034e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -636,3 +636,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta) - [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index b8949e3e2b282..b954137811e41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -537,12 +537,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent) - [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index 07dc559a10144..bc41fc68be957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -582,7 +582,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -602,7 +602,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME : timeSlot +PROPOSEDNEWTIME ``: timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -616,3 +616,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively) - [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index d3801fc4c6263..cc2fc4f8a1283 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -541,12 +541,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -571,3 +571,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent) - [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index c3e216fc39404..c4b02d79b67c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -584,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -597,7 +597,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -617,7 +617,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME : timeSlot +PROPOSEDNEWTIME ``: timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -631,3 +631,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively) - [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md index 34b0729e0f701..c683e56e88408 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -451,3 +451,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md index ef8b008c15e61..0e0c81b8f8ec5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md @@ -486,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -510,3 +510,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index a2fa27145cc08..08b73709b1fc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -582,7 +582,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -602,7 +602,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME : timeSlot +PROPOSEDNEWTIME ``: timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -616,3 +616,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent) - [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index f546e57152d06..9cba75bc50ee3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -584,7 +584,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ProposedNewTime ]: timeSlot @@ -597,7 +597,7 @@ See below for more possible values. [Start ]: dateTimeTimeZone [SendResponse ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -617,7 +617,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -PROPOSEDNEWTIME : timeSlot +PROPOSEDNEWTIME ``: timeSlot [(Any) ]: This indicates any property can be added to this object. [End ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -631,3 +631,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent) - [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index 7458aad7a051f..13ffc81fd7995 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -472,7 +472,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -496,3 +496,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md index 19c0235106bad..baa711bf40368 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder) - [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index db530f6835c97..54ce12affd08e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -383,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -408,3 +408,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder) - [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index f600107c18650..d855674b23278 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -13,8 +13,8 @@ title: Invoke-MgForwardGroupEvent ## SYNOPSIS -This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. ## SYNTAX @@ -66,8 +66,8 @@ This cmdlet has the following aliases, ## DESCRIPTION -This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. ## EXAMPLES @@ -542,7 +542,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [Comment ]: [ToRecipients ]: @@ -551,7 +551,7 @@ BODYPARAMETER ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -582,3 +582,25 @@ TORECIPIENTS : . - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent) - [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 78552c9d8e391..69b94e53d10a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -13,8 +13,8 @@ title: Invoke-MgForwardUserEvent ## SYNOPSIS -This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. ## SYNTAX @@ -66,8 +66,8 @@ This cmdlet has the following aliases, ## DESCRIPTION -This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. -If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. +This action allows the organizer or attendee of a meeting event to forward the\rmeeting request to a new recipient. +If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. ## 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. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Comment ]: [ToRecipients ]: @@ -562,7 +562,7 @@ BODYPARAMETER ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -593,3 +593,25 @@ TORECIPIENTS : . - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent) - [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index ed1d273eb098b..6f258c7102fd5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -511,7 +511,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [NewReminderTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -519,7 +519,7 @@ BODYPARAMETER ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -539,7 +539,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -NEWREMINDERTIME : dateTimeTimeZone +NEWREMINDERTIME ``: 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'. @@ -550,3 +550,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder) - [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 0268a3767b8e4..7e10886c4ece9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -517,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create 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. [NewReminderTime ]: dateTimeTimeZone [(Any) ]: This indicates any property can be added to this object. @@ -525,7 +525,7 @@ BODYPARAMETER ]: Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -545,7 +545,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [WorkspaceId ]: The unique identifier of workspace -NEWREMINDERTIME : dateTimeTimeZone +NEWREMINDERTIME ``: 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'. @@ -556,3 +556,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder) - [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md index 533918a1bbdd7..b1a9a43057aaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Microsoft.Graph.Calendar.md @@ -477,3 +477,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserEventExtension](Update-MgUserEventExtension.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md index a3d38d3ace01f..5652f5e2c70c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md @@ -1893,12 +1893,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2155,7 +2155,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2411,7 +2411,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2680,7 +2680,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2960,7 +2960,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3018,7 +3018,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3032,14 +3032,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3072,7 +3072,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3086,7 +3086,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3096,3 +3096,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md index efa7b9ff65ebd..6626bf1a3ae6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.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 : calendarPermission +BODYPARAMETER ``: calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -619,12 +619,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS : emailAddress +EMAILADDRESS ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -648,3 +648,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md index 1b282c8fcac67..70d3f3960bdca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md @@ -1919,12 +1919,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2181,7 +2181,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2437,7 +2437,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2706,7 +2706,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2986,7 +2986,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3044,7 +3044,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3058,14 +3058,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3098,7 +3098,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3112,7 +3112,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3123,3 +3123,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent) - [](https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index f92e522c06780..09bcd0cd0ff52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -626,7 +626,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : attachment +BODYPARAMETER ``: attachment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -637,7 +637,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z [Name ]: The attachment's file name. [Size ]: The length of the attachment in bytes. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -661,3 +661,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index 0e1acf4f95eeb..0872d13c0d508 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -504,7 +504,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ATTACHMENTITEM : attachmentItem +ATTACHMENTITEM ``: attachmentItem [(Any) ]: This indicates any property can be added to this object. [AttachmentType ]: attachmentType [ContentId ]: The CID or Content-Id of the attachment for referencing for the in-line attachments using the tag in HTML messages. @@ -519,7 +519,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AttachmentItem ]: attachmentItem [(Any) ]: This indicates any property can be added to this object. @@ -536,7 +536,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -561,3 +561,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession) - [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md index c944207ce6117..1438399c762b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -520,3 +520,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension) - [](https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index 73570a87ca196..585edabc79a9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -628,7 +628,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -637,7 +637,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : place +BODYPARAMETER ``: place [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -679,7 +679,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -693,3 +693,25 @@ As an example, the accuracy can be measured in meters, such as the latitude and - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace) - [](https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md index 8eeb5abfc80c9..f5ffff2258058 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md @@ -518,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -527,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md index 053ee88a0b141..d595c9788cbfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -511,3 +511,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md index ed627799dfa9e..2599e961c42c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md @@ -606,7 +606,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : levelMap +BODYPARAMETER ``: levelMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -638,7 +638,7 @@ Supports upsert. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -676,3 +676,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md index 20d786cb6b866..b376e6bd997a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md @@ -544,14 +544,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 : fixtureMap +BODYPARAMETER ``: fixtureMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -575,3 +575,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md index bed6e263de1ca..a51d6bb2aef63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md @@ -544,14 +544,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 : sectionMap +BODYPARAMETER ``: sectionMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the section to which this sectionMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -575,3 +575,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md index dc4d29389133b..411efd56dddb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md @@ -544,14 +544,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 : unitMap +BODYPARAMETER ``: unitMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the place (such as a room) to which this unitMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -575,3 +575,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md index d0c2f5529cdf8..2fe8ac1080818 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md @@ -517,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -526,7 +526,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md index 28106f4b36a0d..b5d9cad65259f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md @@ -518,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -527,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md index c3248598159b6..9bdb26224df94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md @@ -517,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -526,7 +526,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -550,3 +550,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md index 67b906e15abeb..79638e7f516b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md @@ -518,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -527,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md index b82be6a8b1455..d025aa5f6d0af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md @@ -1044,7 +1044,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -1053,7 +1053,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : room +BODYPARAMETER ``: room [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1108,7 +1108,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -1117,7 +1117,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1141,3 +1141,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md index b1ac5258ab18e..55234da19f882 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md index c814f8275001b..4f021df1dd26c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md @@ -880,7 +880,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -889,7 +889,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : workspace +BODYPARAMETER ``: workspace [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -940,7 +940,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -949,7 +949,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -973,3 +973,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md index 6a7a334158d26..202088bf2206d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md index 689a0b041ff6e..0ff36f70c38e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md @@ -518,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -527,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md index 1513fc083a75d..255df7d648f6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md @@ -518,7 +518,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -527,7 +527,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -551,3 +551,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md index 15bfdf2cf2e7e..f2b031b33b429 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.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. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -532,7 +532,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck) - [](https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index c89a705b083fe..90473cec22681 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -990,7 +990,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendar +BODYPARAMETER ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1777,7 +1777,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1804,7 +1804,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -OWNER : emailAddress +OWNER ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. @@ -1820,3 +1820,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index 980e4eda473bd..48b12a2651a42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -1985,12 +1985,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2247,7 +2247,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2503,7 +2503,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2772,7 +2772,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3052,7 +3052,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3110,7 +3110,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3124,14 +3124,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3164,7 +3164,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3178,7 +3178,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3188,3 +3188,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index ae851a9627dab..37a31cddffd99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -581,7 +581,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendarGroup +BODYPARAMETER ``: calendarGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1108,7 +1108,7 @@ Nullable. Read-only. Nullable. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1132,3 +1132,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index 2c743dc899799..19813ef66fef7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -1020,7 +1020,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendar +BODYPARAMETER ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1807,7 +1807,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1834,7 +1834,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -OWNER : emailAddress +OWNER ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. @@ -1850,3 +1850,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md index 8d7527ba0371f..c1e683a13bcae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md @@ -792,7 +792,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendarPermission +BODYPARAMETER ``: calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -808,12 +808,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS : emailAddress +EMAILADDRESS ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -837,3 +837,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index 09daad89b6218..632be432dda07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -1894,12 +1894,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2156,7 +2156,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2412,7 +2412,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2681,7 +2681,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2961,7 +2961,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3019,7 +3019,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3033,14 +3033,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3073,7 +3073,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3087,7 +3087,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3097,3 +3097,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index b79bfa326600c..d571b42bce412 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -2010,12 +2010,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2272,7 +2272,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2528,7 +2528,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2797,7 +2797,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3077,7 +3077,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3135,7 +3135,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3149,14 +3149,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3189,7 +3189,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3203,7 +3203,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3213,3 +3213,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index 693f49c5759c4..819aa92f25214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -647,7 +647,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : attachment +BODYPARAMETER ``: attachment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -658,7 +658,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z [Name ]: The attachment's file name. [Size ]: The length of the attachment in bytes. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -682,3 +682,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index 474c7bb76402c..73459bfde574d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -504,7 +504,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ATTACHMENTITEM : attachmentItem +ATTACHMENTITEM ``: attachmentItem [(Any) ]: This indicates any property can be added to this object. [AttachmentType ]: attachmentType [ContentId ]: The CID or Content-Id of the attachment for referencing for the in-line attachments using the tag in HTML messages. @@ -519,7 +519,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AttachmentItem ]: attachmentItem [(Any) ]: This indicates any property can be added to this object. @@ -536,7 +536,7 @@ Required. [Size ]: The length of the attachment in bytes. Required. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -561,3 +561,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession) - [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md index 1e3af80d0274a..a58547d850a4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md @@ -485,7 +485,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -509,3 +509,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index 25235f7a096b1..a3b0d3a8fe014 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md index 8aa8eff0b47d1..31b323f642a8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -387,3 +387,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index 775e771a71b1e..69bde2d637af5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index 7db044598eebf..9c93be170b461 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -428,3 +428,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent) - [](https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md index 05b7321489645..00053c75756ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md @@ -426,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md index c2774c47b6306..4e45f2ddf248b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md @@ -426,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md index d897f7a0aede9..fe6b3aa6c36f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -408,3 +408,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index 0e86a96394d38..f92010474bc34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -409,3 +409,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace) - [](https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md index 725b726152b29..51029dbd21580 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md index 72a9272565978..e0081422b95a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md @@ -382,7 +382,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -407,3 +407,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap) - [](https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md index b74ee1abe8080..249928be5ec36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md index e66334788a457..d353cbe52e50a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md index d64a332271aaf..4f7472ce888f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md @@ -425,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture) - [](https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md index 3ebfe617bd94c..cdf39ba63021a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -451,3 +451,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md index df9b118b537c1..d227d83f67c2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md @@ -424,7 +424,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -449,3 +449,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit) - [](https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md index 18760e464741b..c898859b73b89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md index de81fd2d802ff..ed04fc08148c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md index c3ece7aaf210f..afb6f522a58af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md index 1f23ad99b0859..5ea6633340867 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md index 440b7c4217763..76d7e6fb17440 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md index 4bff860fdf2dd..29be38806db43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -451,3 +451,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md index b9ab4f9013cf9..d0d086dda29f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md index db756b7c3c058..aeb46263f9553 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -451,3 +451,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md index 7270bc2998402..9f9da80e70211 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md index af2983267f252..20f69f7877118 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md index cbea3e576a2ff..ea06fe6a5763b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -429,3 +429,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index 7ec7e0197d613..b1b888bda915d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -428,3 +428,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index db31a5077e805..95a3484b68ae9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -412,7 +412,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index ba408ccdedda2..5b542261bf71c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -460,7 +460,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -485,3 +485,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission) - [](https://learn.microsoft.com/graph/api/calendarpermission-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index 1dfc48fd52b31..8d0de4d9dff6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -428,3 +428,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md index 2bc0fd4b9aa84..022302ac20421 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md @@ -425,7 +425,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -449,3 +449,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md index 2bbbb48ce3b20..584f8935f292b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md @@ -426,7 +426,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index de5018fc20bda..e2afbfa4f1157 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -408,3 +408,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index 00456c4e69f44..0d1d277579ddd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -15,9 +15,9 @@ title: Stop-MgGroupEvent This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. +The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. ## SYNTAX @@ -68,9 +68,9 @@ This cmdlet has the following aliases, This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. +The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. ## EXAMPLES @@ -516,11 +516,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. [Comment ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -545,3 +545,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent) - [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index ddc89e23995c8..b54ad9f129340 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -15,9 +15,9 @@ title: Stop-MgUserEvent This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. +The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. ## SYNTAX @@ -68,9 +68,9 @@ This cmdlet has the following aliases, This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. -The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. -An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. -You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation. +The organizer can also cancel an occurrence of a recurring meeting \rby providing the occurrence event ID. +An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. +You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. ## EXAMPLES @@ -519,11 +519,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. [Comment ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -548,3 +548,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent) - [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index cfd96567e8c71..a3d70223ad1a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -1925,12 +1925,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2187,7 +2187,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2443,7 +2443,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2712,7 +2712,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2992,7 +2992,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3050,7 +3050,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3064,14 +3064,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3104,7 +3104,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3118,7 +3118,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3129,3 +3129,25 @@ See below for more possible values. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent) - [](https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md index 1df56be43e8f8..212ac2c2d4622 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md @@ -631,7 +631,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendarPermission +BODYPARAMETER ``: calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -647,12 +647,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS : emailAddress +EMAILADDRESS ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -676,3 +676,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index 8bc2a82769e45..0033e6854c90a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -1920,12 +1920,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2182,7 +2182,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2438,7 +2438,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2707,7 +2707,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -2987,7 +2987,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3045,7 +3045,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3059,14 +3059,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3099,7 +3099,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3113,7 +3113,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3123,3 +3123,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md index ead6c8c2f0d82..0553f9dce338c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md @@ -513,7 +513,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -537,3 +537,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index 309b4fb282115..d552acebc76c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -786,7 +786,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -795,7 +795,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : place +BODYPARAMETER ``: place [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -837,7 +837,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -846,7 +846,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -871,3 +871,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace) - [](https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md index 9e12e5f9386ad..929d164577479 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md index f676c04223915..bf49d551440b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.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 : buildingMap +BODYPARAMETER ``: buildingMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -618,7 +618,7 @@ It corresponds to footprint.geojson in IMDF format. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -667,3 +667,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md index ff3e502de5860..0b5c16bd37401 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md @@ -514,7 +514,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -538,3 +538,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md index 86de94669e93e..49287867005e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md @@ -635,7 +635,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : levelMap +BODYPARAMETER ``: levelMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. @@ -667,7 +667,7 @@ Supports upsert. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -705,3 +705,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md index d19f96ad64ecb..90e3c7a2601fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md @@ -585,14 +585,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 : fixtureMap +BODYPARAMETER ``: fixtureMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier for the floor to which this fixtureMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -617,3 +617,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture) - [](https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md index 79308094d3fac..62400835e835d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md @@ -571,14 +571,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sectionMap +BODYPARAMETER ``: sectionMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the section to which this sectionMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -602,3 +602,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md index fc0b7c9f7f6d6..7c2e77fd63864 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md @@ -584,14 +584,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 : unitMap +BODYPARAMETER ``: unitMap [(Any) ]: This indicates any property can be added to this object. [Properties ]: Concatenated key-value pair of all properties of a GeoJSON file for this baseMapFeature. [Id ]: The unique identifier for an entity. Read-only. [PlaceId ]: Identifier of the place (such as a room) to which this unitMap belongs. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -616,3 +616,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit) - [](https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md index cd7c6fdb4fbf2..1366b9aca5a26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md index 1a9633e8a4abd..f03f06b2a6d1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md index 37123b67ef59a..d08a48d572c86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md index f62cb0f4344c5..3b62176a24b35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md index 1c86ba2937c47..fe348d15fc3d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md @@ -1071,7 +1071,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -1080,7 +1080,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : room +BODYPARAMETER ``: room [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -1135,7 +1135,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -1144,7 +1144,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1168,3 +1168,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md index f91f782c9c42d..aa6d0cf4dd2b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md @@ -574,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -583,7 +583,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md index a8f59617376cf..b9607e923b5a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md @@ -909,7 +909,7 @@ COMPLEX PARAMETER PROPERTIES To 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. @@ -918,7 +918,7 @@ It's a free-format string value, for example, 'United States'. [State ]: The state. [Street ]: The street. -BODYPARAMETER : workspace +BODYPARAMETER ``: workspace [(Any) ]: This indicates any property can be added to this object. [Address ]: physicalAddress [(Any) ]: This indicates any property can be added to this object. @@ -969,7 +969,7 @@ For more information, see the iCalUId property in event. 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. -GEOCOORDINATES : outlookGeoCoordinates +GEOCOORDINATES ``: outlookGeoCoordinates [(Any) ]: This indicates any property can be added to this object. [Accuracy ]: The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters. @@ -978,7 +978,7 @@ As an example, the accuracy can be measured in meters, such as the latitude and [Latitude ]: The latitude of the location. [Longitude ]: The longitude of the location. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1002,3 +1002,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md index 2aff9987ddce7..7bed036c92238 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md @@ -574,7 +574,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -583,7 +583,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -607,3 +607,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md index 83692a2c82037..ac9a48287b9e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md index 70f98f3f820c4..73911b0f98ff1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md @@ -546,7 +546,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -555,7 +555,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -579,3 +579,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md index 79899eb5d8b92..6e49602bdc9f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md @@ -545,7 +545,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : checkInClaim +BODYPARAMETER ``: checkInClaim [(Any) ]: This indicates any property can be added to this object. [CalendarEventId ]: The unique identifier for an Outlook calendar event associated with the checkInClaim object. For more information, see the iCalUId property in event. @@ -554,7 +554,7 @@ For more information, see the iCalUId property in event. 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 [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -578,3 +578,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index 3f63c42db6bc8..36d35e019676e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.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 : calendarGroup +BODYPARAMETER ``: calendarGroup [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1137,7 +1137,7 @@ Nullable. Read-only. Nullable. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -1161,3 +1161,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md index 95876e38cd266..cd6d03ba15e4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md @@ -834,7 +834,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : calendarPermission +BODYPARAMETER ``: calendarPermission [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -850,12 +850,12 @@ The 'My organization' user determines the permissions other people within your o You can't remove 'My organization' as a share recipient to a calendar. [Role ]: calendarRoleType -EMAILADDRESS : emailAddress +EMAILADDRESS ``: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -880,3 +880,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission) - [](https://learn.microsoft.com/graph/api/calendarpermission-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index eb6154bdda4e9..44c3868f184ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -1937,12 +1937,12 @@ See below for more possible values. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -BODY : itemBody +BODY ``: itemBody [(Any) ]: This indicates any property can be added to this object. [Content ]: The content of the item. [ContentType ]: bodyType -BODYPARAMETER : event +BODYPARAMETER ``: event [(Any) ]: This indicates any property can be added to this object. [Categories ]: The categories associated with the item [ChangeKey ]: Identifies the version of the item. @@ -2199,7 +2199,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -CALENDAR : calendar +CALENDAR ``: calendar [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2455,7 +2455,7 @@ Nullable. Read-only. Nullable. -END : dateTimeTimeZone +END ``: 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'. @@ -2724,7 +2724,7 @@ Nullable. [Id ]: The unique identifier for an entity. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -3004,7 +3004,7 @@ Optional. [WebLink ]: The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. -LOCATION : location +LOCATION ``: 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. @@ -3062,7 +3062,7 @@ Nullable. Read-only. [Value ]: A collection of property values. -ONLINEMEETING : onlineMeetingInfo +ONLINEMEETING ``: onlineMeetingInfo [(Any) ]: This indicates any property can be added to this object. [ConferenceId ]: The ID of the conference. [JoinUrl ]: The external link that launches the online meeting. @@ -3076,14 +3076,14 @@ This is a URL that clients launch into a browser and will redirect the user to j [TollFreeNumbers ]: The toll free numbers that can be used to join the conference. [TollNumber ]: The toll number that can be used to join the conference. -ORGANIZER : recipient +ORGANIZER ``: recipient [(Any) ]: This indicates any property can be added to this object. [EmailAddress ]: emailAddress [(Any) ]: This indicates any property can be added to this object. [Address ]: The email address of the person or entity. [Name ]: The display name of the person or entity. -RECURRENCE : patternedRecurrence +RECURRENCE ``: patternedRecurrence [(Any) ]: This indicates any property can be added to this object. [Pattern ]: recurrencePattern [(Any) ]: This indicates any property can be added to this object. @@ -3116,7 +3116,7 @@ Must be the same value as the start property of the recurring event. Required. [Type ]: recurrenceRangeType -RESPONSESTATUS : responseStatus +RESPONSESTATUS ``: responseStatus [(Any) ]: This indicates any property can be added to this object. [Response ]: responseType [Time ]: The date and time when the response was returned. @@ -3130,7 +3130,7 @@ Nullable. Read-only. [Value ]: A property value. -START : dateTimeTimeZone +START ``: 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'. @@ -3140,3 +3140,25 @@ See below for more possible values. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md index 86c7093198954..45721afbd2891 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md @@ -513,7 +513,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AttachmentId ]: The unique identifier of attachment [CalendarGroupId ]: The unique identifier of calendarGroup [CalendarId ]: The unique identifier of calendar @@ -537,3 +537,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension) + + + + + + + + + + + + + + + + + + + + + + From 28cf7a18336ef39522c9db10d84c8cac67d6b79a Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:44 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgGroupEvent.md | 8 ++++++++ .../Get-MgGroupEventAttachmentCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgGroupEventCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md | 8 ++++++++ .../Get-MgPlaceCountAsBuilding.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md | 8 ++++++++ .../Get-MgPlaceCountAsRoomList.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md | 8 ++++++++ .../Get-MgPlaceCountAsWorkspace.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md | 8 ++++++++ .../Get-MgUserCalendarGroupCalendar.md | 8 ++++++++ .../Get-MgUserCalendarGroupCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarView.md | 8 ++++++++ .../Get-MgUserDefaultCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserEvent.md | 8 ++++++++ .../Get-MgUserEventAttachmentCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserEventCount.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserEventDelta.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Get-MgUserEventInstance.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md | 8 ++++++++ .../Invoke-MgAcceptUserEventTentatively.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md | 8 ++++++++ .../Invoke-MgDismissUserEventReminder.md | 8 ++++++++ .../Invoke-MgForwardGroupEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md | 8 ++++++++ .../Invoke-MgSnoozeUserEventReminder.md | 8 ++++++++ .../New-MgGroupEventAttachment.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgPlace.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgUserCalendar.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md | 8 ++++++++ .../New-MgUserCalendarGroupCalendar.md | 8 ++++++++ .../New-MgUserDefaultCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgUserEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/New-MgUserEventAttachment.md | 8 ++++++++ .../New-MgUserEventAttachmentUploadSession.md | 8 ++++++++ .../Remove-MgGroupCalendarEvent.md | 8 ++++++++ .../Remove-MgGroupCalendarPermission.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Remove-MgGroupEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Remove-MgPlace.md | 8 ++++++++ .../Remove-MgUserCalendarGroup.md | 8 ++++++++ .../Remove-MgUserCalendarPermanent.md | 8 ++++++++ .../Remove-MgUserCalendarPermission.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Remove-MgUserEvent.md | 8 ++++++++ .../Remove-MgUserEventPermanent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Stop-MgGroupEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Stop-MgUserEvent.md | 8 ++++++++ .../Update-MgGroupCalendarEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Update-MgGroupEvent.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Update-MgPlace.md | 8 ++++++++ .../Update-MgUserCalendarGroup.md | 8 ++++++++ .../Microsoft.Graph.Calendar/Update-MgUserEvent.md | 8 ++++++++ 59 files changed, 472 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 44779623c95e2..39a64fe3cd707 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -59,6 +59,14 @@ The events in the calendar. Navigation property. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Group.Read.All, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index 1a4651cc1d59c..afb6d41381dee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -55,6 +55,14 @@ This cmdlet has the following aliases, Get an event object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Group.Read.All, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index 27eb583ac31f2..57f330714e7f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.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) | Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.Read, | +| Application | Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index 56a12ebf55d58..02d882fe1be08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.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) | Group.Read.All, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index a1086ba9fb9ef..d76114dce8ed7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -54,6 +54,14 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | +| Application | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index 77419883c082d..423aa3ef2d2c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -46,6 +46,14 @@ Navigation property. Read-only. Nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index a74dbe1624f69..ee1fca715562a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index d6e05c7fff738..ce1ddf2e61954 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index a00fc511f0c3b..b6a048a71ae70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index c8e6f815aa430..4e3787c1e3620 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index 4d51a7847b903..40a42b398c562 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index b75c217e821a0..14b0a38112cda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index 521d13bdde0d0..0686867d03041 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.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) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index 0aeac83da072d..a661e56742d7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.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) | Calendars.ReadBasic, Calendars.Read, Calendars.Read.Shared, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.Read.Shared, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index d062dcef6d268..6abb9ff7284be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -41,6 +41,14 @@ The events in the calendar. Navigation property. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index b87285eaa961b..e38baba6904e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md @@ -59,6 +59,14 @@ The user's calendar groups. Read-only. Nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index 00983a389d616..169ec396596fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -43,6 +43,14 @@ Navigation property. Read-only. Nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Calendars.Read.Shared, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.Read.Shared, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index 98799964cebb6..52476fef6f317 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.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) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index ae9e0a2e43e63..faba1fd889e2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -53,6 +53,14 @@ The calendar view for the calendar. Navigation property. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index 4a72a2250205f..2253ca00e8d7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -41,6 +41,14 @@ The events in the calendar. Navigation property. Read-only. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index 9270cd9cc1aa3..ab292fe3a6e18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -61,6 +61,14 @@ Default is to show Events under the Default Calendar. Read-only. Nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index 23c014b5b4694..7a29ef8646e32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.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) | Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.Read, | +| Application | Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index 2e63e211231e0..c3402c8d00d27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.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) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | +| Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index b8bc05592f16d..201258ed1b37a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -54,6 +54,14 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | +| Application | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 4d09eb6cd59c4..0356765d579d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -46,6 +46,14 @@ Navigation property. Read-only. Nullable. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadBasic, Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | +| Application | Calendars.ReadBasic, Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index cc2fc4f8a1283..800b248bb1e78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Accept the specified event in a user calendar. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index c4b02d79b67c1..c6a1b6da69c75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -70,6 +70,14 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index 9cba75bc50ee3..0922a37193c9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -70,6 +70,14 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index 13ffc81fd7995..aa331444aa6f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Invoke function descendants +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Place.Read.All, Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.Read.All, Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index 54ce12affd08e..a537d2738aa95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Dismiss a reminder that has been triggered for an event in a user calendar. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index d855674b23278..e22cc51751944 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -70,6 +70,14 @@ This action allows the organizer or attendee of a meeting event to forward the\r If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.Read, | +| Application | Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 69b94e53d10a6..9aa5081ff0731 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -70,6 +70,14 @@ This action allows the organizer or attendee of a meeting event to forward the\r If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.Read, | +| Delegated (personal Microsoft account) | Calendars.Read, | +| Application | Calendars.Read, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 7e10886c4ece9..4d0404fcc70b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Postpone a reminder for an event in a user calendar until a new time. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index 09bcd0cd0ff52..c3d9b1a277074 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Create new navigation property to attachments for groups +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index 585edabc79a9d..f578c87745a23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Create a new place object. You can also use this method to create the following child object types: building, floor, section, room, workspace, or desk. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index 90473cec22681..acaeaeb6ee7cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -80,6 +80,14 @@ This cmdlet has the following aliases, Create new navigation property to calendars for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index 48b12a2651a42..bc4b28331d384 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -100,6 +100,14 @@ This cmdlet has the following aliases, Create new navigation property to events for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index 37a31cddffd99..6bba53be5ebfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -65,6 +65,14 @@ This cmdlet has the following aliases, Create new navigation property to calendarGroups for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index 19813ef66fef7..8afe1f96a667e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -83,6 +83,14 @@ This cmdlet has the following aliases, Create new navigation property to calendars for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index 632be432dda07..5634d71c54eff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -101,6 +101,14 @@ This cmdlet has the following aliases, Create new navigation property to events for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index d571b42bce412..733ffb8c2bf5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -100,6 +100,14 @@ This cmdlet has the following aliases, Create new navigation property to events for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index 819aa92f25214..eb0651eb7c80e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Create new navigation property to attachments for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index 73459bfde574d..cefac7625a5a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -80,6 +80,14 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, Mail.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, Mail.ReadWrite, | +| Application | Calendars.ReadWrite, Mail.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index a3b0d3a8fe014..facf228218cad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property events for groups +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index 69bde2d637af5..2a48665d288dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property calendarPermissions for groups +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index 9c93be170b461..b8c54ee82faf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete an event object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index f92010474bc34..33271b3299e92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete a place object. You can also use this method to delete the following child object types: building, floor, section, or desk. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index b1b888bda915d..7baf954bffa9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property calendarGroups for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index 95a3484b68ae9..4b5f53fca5ba2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -62,6 +62,14 @@ This cmdlet has the following aliases, Invoke action permanentDelete +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index 5b542261bf71c..5f14c26f8ad08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -62,6 +62,14 @@ This cmdlet has the following aliases, Delete calendarPermission. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index 8d0de4d9dff6a..8d3f78b838c1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property events for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index e2afbfa4f1157..347d2ce9ce3f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Invoke action permanentDelete +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index 0d1d277579ddd..f594757e37845 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -72,6 +72,14 @@ The organizer can also cancel an occurrence of a recurring meeting \rby providin An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index b54ad9f129340..bea1772029026 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -72,6 +72,14 @@ The organizer can also cancel an occurrence of a recurring meeting \rby providin An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index a3d70223ad1a0..8524c22b729a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -101,6 +101,14 @@ This cmdlet has the following aliases, Update an event object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index 0033e6854c90a..4eddd822fb196 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -100,6 +100,14 @@ This cmdlet has the following aliases, Update the navigation property events in groups +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, Group.ReadWrite.All, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index d552acebc76c7..637cfb00e8a2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Place.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | Place.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index 36d35e019676e..926cf22fdfb79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Update the navigation property calendarGroups in users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index 44c3868f184ee..bde04f7f10090 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -100,6 +100,14 @@ This cmdlet has the following aliases, Update the navigation property events in users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | Calendars.ReadWrite, | +| Delegated (personal Microsoft account) | Calendars.ReadWrite, | +| Application | Calendars.ReadWrite, | + ## EXAMPLES ### EXAMPLE 1 From 616b0da1edec384300b7c04964df2d1002e948fb Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:29 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Microsoft.Graph.Calendar/Get-MgGroupCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md | 3 +++ .../Get-MgGroupCalendarPermissionCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md | 3 +++ .../Get-MgGroupEventAttachmentCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md | 3 +++ .../Get-MgPlaceAsBuildingCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md | 3 +++ .../Get-MgPlaceAsBuildingMapFootprint.md | 3 +++ .../Get-MgPlaceAsBuildingMapFootprintCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelCount.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelFixture.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelFixtureCount.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelSection.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelSectionCount.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelUnit.md | 3 +++ .../Get-MgPlaceAsBuildingMapLevelUnitCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md | 3 +++ .../Get-MgPlaceAsRoomListCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md | 3 +++ .../Get-MgPlaceAsRoomListRoomCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md | 3 +++ .../Get-MgPlaceAsRoomListWorkspaceCheck.md | 3 +++ .../Get-MgPlaceAsRoomListWorkspaceCheckInCount.md | 3 +++ .../Get-MgPlaceAsRoomListWorkspaceCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md | 3 +++ .../Get-MgPlaceAsSectionCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md | 3 +++ .../Get-MgPlaceAsWorkspaceCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md | 3 +++ .../Get-MgUserCalendarGroupCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md | 3 +++ .../Get-MgUserCalendarPermissionCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserCalendarView.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventDelta.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventInstance.md | 3 +++ .../Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md | 3 +++ .../Invoke-MgAcceptGroupEventTentatively.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md | 3 +++ .../Invoke-MgAcceptUserEventTentatively.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md | 3 +++ ...Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md | 3 +++ .../Invoke-MgDismissGroupEventReminder.md | 3 +++ .../Invoke-MgDismissUserEventReminder.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md | 3 +++ .../Invoke-MgSnoozeGroupEventReminder.md | 3 +++ .../Invoke-MgSnoozeUserEventReminder.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md | 3 +++ .../New-MgGroupEventAttachmentUploadSession.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgGroupEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlace.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md | 3 +++ .../New-MgPlaceAsBuildingMapFootprint.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md | 3 +++ .../New-MgPlaceAsBuildingMapLevelFixture.md | 3 +++ .../New-MgPlaceAsBuildingMapLevelSection.md | 3 +++ .../New-MgPlaceAsBuildingMapLevelUnit.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md | 3 +++ .../New-MgPlaceAsRoomListWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgPlaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md | 3 +++ .../New-MgUserCalendarGroupCalendar.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserEventAttachment.md | 3 +++ .../New-MgUserEventAttachmentUploadSession.md | 3 +++ .../Microsoft.Graph.Calendar/New-MgUserEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md | 3 +++ .../Remove-MgGroupCalendarPermanent.md | 3 +++ .../Remove-MgGroupCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlace.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md | 3 +++ .../Remove-MgPlaceAsBuildingMapFootprint.md | 3 +++ .../Remove-MgPlaceAsBuildingMapLevel.md | 3 +++ .../Remove-MgPlaceAsBuildingMapLevelFixture.md | 3 +++ .../Remove-MgPlaceAsBuildingMapLevelSection.md | 3 +++ .../Remove-MgPlaceAsBuildingMapLevelUnit.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md | 3 +++ .../Remove-MgPlaceAsRoomListRoomCheck.md | 3 +++ .../Remove-MgPlaceAsRoomListWorkspace.md | 3 +++ .../Remove-MgPlaceAsRoomListWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md | 3 +++ .../Remove-MgUserCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md | 3 +++ .../Microsoft.Graph.Calendar/Stop-MgGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Stop-MgUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md | 3 +++ .../Update-MgGroupCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgGroupEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlace.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md | 3 +++ .../Update-MgPlaceAsBuildingMapFootprint.md | 3 +++ .../Update-MgPlaceAsBuildingMapLevel.md | 3 +++ .../Update-MgPlaceAsBuildingMapLevelFixture.md | 3 +++ .../Update-MgPlaceAsBuildingMapLevelSection.md | 3 +++ .../Update-MgPlaceAsBuildingMapLevelUnit.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md | 3 +++ .../Update-MgPlaceAsRoomListRoomCheck.md | 3 +++ .../Update-MgPlaceAsRoomListWorkspace.md | 3 +++ .../Update-MgPlaceAsRoomListWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgPlaceCheck.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md | 3 +++ .../Update-MgUserCalendarPermission.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgUserEvent.md | 3 +++ .../Microsoft.Graph.Calendar/Update-MgUserEventExtension.md | 3 +++ 198 files changed, 594 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md index 311aee2db7f96..d87554469f49a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md @@ -16,6 +16,9 @@ title: Get-MgGroupCalendar The group's calendar. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendar?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 39a64fe3cd707..8678d78dc03d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -17,6 +17,9 @@ The events in the calendar. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md index 1eb135254ade1..b6c5466e19e72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md @@ -15,6 +15,9 @@ title: Get-MgGroupCalendarPermission The permissions of the users with whom the calendar is shared. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md index 3cc51a8b1139f..b4ee945b31a41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md @@ -15,6 +15,9 @@ title: Get-MgGroupCalendarPermissionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarPermissionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarPermissionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index 5bf02809a4c2b..20fdce5d34cfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md @@ -15,6 +15,9 @@ title: Get-MgGroupCalendarSchedule Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarSchedule](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarSchedule?view=graph-powershell-beta) + ## SYNTAX ### GetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md index b9aa9d905fef7..ead3d2ecb6506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md @@ -17,6 +17,9 @@ The calendar view for the calendar. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupCalendarView](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupCalendarView?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index afb6d41381dee..31630d28a494d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -15,6 +15,9 @@ title: Get-MgGroupEvent Get an event object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md index 288047994993b..227214e649828 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md @@ -18,6 +18,9 @@ Navigation property. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index 57f330714e7f9..2550ce37758e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md @@ -15,6 +15,9 @@ title: Get-MgGroupEventAttachmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventAttachmentCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventAttachmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md index 088f76deadae0..67a29df1923f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md @@ -17,6 +17,9 @@ The calendar that contains the event. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventCalendar?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index 02d882fe1be08..0344bf107e792 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md @@ -15,6 +15,9 @@ title: Get-MgGroupEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index d76114dce8ed7..33162b4fe5907 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -18,6 +18,9 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md index 9d7502b5791b1..287b082a2cfb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md @@ -17,6 +17,9 @@ Get an open extension (openTypeExtension object) identified by name or fully qua The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventExtension?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md index c91220a22978e..fb40248cebb70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md @@ -15,6 +15,9 @@ title: Get-MgGroupEventExtensionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventExtensionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventExtensionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index 423aa3ef2d2c5..f692e33093c70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -19,6 +19,9 @@ Navigation property. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventInstance](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventInstance?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md index a6f39fc842689..aa59ff5a48046 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md @@ -18,6 +18,9 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaGroupEventInstanceDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaGroupEventInstanceDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md index 05e2dc5231228..204a7b429757a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuilding Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuilding](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuilding?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md index 7e454156392d9..e118e4b070c60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md index cdde861c81e28..3c5bce288c2a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md index 6f15678f1c92c..39da04cb05150 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMap Get the map of a building in IMDF format. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md index afea21e5c7b26..32ee17505c1da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuildingMapFootprint Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md index 39b7629fafa9c..0cda93d67b010 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMapFootprintCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapFootprintCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapFootprintCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md index 6f67b6de0049f..f73f33edaa700 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuildingMapLevel Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md index 8eafa5843f05f..12d618f3af69b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMapLevelCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md index 4a1d350bcaded..11aa89d35beff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuildingMapLevelFixture Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md index fb1574b6e3594..ad7bd84cc8238 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMapLevelFixtureCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelFixtureCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelFixtureCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md index 24be1774fb451..6eb3b7d852cac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuildingMapLevelSection Collection of sections (such as zones or partitions) on this level. Supports upsert. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md index 8766280e9bb68..d3e882b6646e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMapLevelSectionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelSectionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelSectionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md index b09e02c6c3a14..81ef77e49dc6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsBuildingMapLevelUnit Collection of units (such as rooms or offices) on this level. Supports upsert. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md index cdccb71f58635..e279339b63a9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsBuildingMapLevelUnitCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsBuildingMapLevelUnitCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsBuildingMapLevelUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md index cd6cebf580b7b..8ba3b859b5302 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsDesk Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDesk](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDesk?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md index fc8383f38c0f6..4d5eed5eae151 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsDeskCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md index 831aed8e79275..247061b101fc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsDeskCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsDeskCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsDeskCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md index e6fc52fcb47ce..a45d7cc9d5f3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsFloor Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloor](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloor?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md index 9330763f87980..2145ffc7ea8b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsFloorCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md index fef1cf4f55584..97e77503f0d1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsFloorCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsFloorCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsFloorCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md index 5acb23cffad2c..3fbd87d471b89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsRoom Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoom?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md index 52dbd2a8c5791..f960cec7d1e91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md index 717fc76a9f97e..c0f5ce22e61d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md index a25e7ed8e3467..28e9a2dcac1a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsRoomList Read the properties of a place object specified by its ID. The place object can be one of the following types: The listed resources are derived from the place object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomList](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomList?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md index fbc2b2fe7f36b..f7a1d637f9852 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md index d27837a4f380c..4f999f154c6a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md index 46a79fa6b004c..b67dddce1dda7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListRoom Get rooms from places +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md index bc206ab0d2020..752a885a5ee6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListRoomCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md index e2e5398c9e20b..cc31137b5f3b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListRoomCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md index afe5304caf6f9..9bcc16673d324 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListRoomCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListRoomCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListRoomCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md index cf6a2a1b43300..b4b9cb76b3d39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListWorkspace Get workspaces from places +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md index bd2e2471391a7..54e1aafba6b0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListWorkspaceCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md index 3ac0406d44019..02a5b3e08ca11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListWorkspaceCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md index 21c34d84c0453..24229ef7cff7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsRoomListWorkspaceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsRoomListWorkspaceCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsRoomListWorkspaceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md index 2d2907ada776a..41ff5a72e0ff7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsSection Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSection?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md index dec98662baa5f..07fb4abeca68c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsSectionCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md index d0e7aa3591f2f..acf55dc92be72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsSectionCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsSectionCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsSectionCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md index 83d35fe0c0ed4..6b2e96538afad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md @@ -16,6 +16,9 @@ title: Get-MgPlaceAsWorkspace Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspace?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md index 8a920682f14dd..4c9e1946329f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsWorkspaceCheck A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md index 0ed91b22eb6ff..56d113e097101 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceAsWorkspaceCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceAsWorkspaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceAsWorkspaceCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md index 11475f8691972..76640b98be602 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md @@ -16,6 +16,9 @@ title: Get-MgPlaceCheck Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCheck?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md index 61712f607d3c3..87231724be387 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCheckInCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCheckInCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCheckInCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md index 6aaac054752cf..941b377353bbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index ee1fca715562a..45d75da52dd5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsBuilding Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsBuilding](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsBuilding?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index ce1ddf2e61954..397b9a4ef2def 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsDesk Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsDesk](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsDesk?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index b6a048a71ae70..dbe31956a9108 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsFloor Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsFloor](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsFloor?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index 4e3787c1e3620..b3c18747887a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsRoom Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsRoom?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index 40a42b398c562..4ba168ea2ee80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsRoomList Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsRoomList](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsRoomList?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index 14b0a38112cda..1f73fdea7e6c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsSection Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsSection?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index 0686867d03041..cd26cc9dc01c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md @@ -15,6 +15,9 @@ title: Get-MgPlaceCountAsWorkspace Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaPlaceCountAsWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaPlaceCountAsWorkspace?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md index 1a5c7da8b7d83..2cb95f44365f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md @@ -17,6 +17,9 @@ The user's calendars. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendar?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index a661e56742d7f..174d8b8a08b5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md @@ -15,6 +15,9 @@ title: Get-MgUserCalendarCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index 6abb9ff7284be..ed54efce0655c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -17,6 +17,9 @@ The events in the calendar. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### List1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index e38baba6904e9..2055a5d83ddce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md @@ -17,6 +17,9 @@ The user's calendar groups. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroup?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index 169ec396596fc..79a99f1cb62a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -18,6 +18,9 @@ Navigation property. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroupCalendar?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index 52476fef6f317..3f56100e8cad2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md @@ -15,6 +15,9 @@ title: Get-MgUserCalendarGroupCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarGroupCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarGroupCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md index e37c463dcc0a1..78f4208c4b63e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md @@ -15,6 +15,9 @@ title: Get-MgUserCalendarPermission Get the specified permissions object of a user or group calendar that has been shared. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md index addb802471489..e570ed820c7a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md @@ -15,6 +15,9 @@ title: Get-MgUserCalendarPermissionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarPermissionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarPermissionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index faba1fd889e2b..8df08560783d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -17,6 +17,9 @@ The calendar view for the calendar. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserCalendarView](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserCalendarView?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md index dcc42b0548c31..b3f73d8af2788 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md @@ -16,6 +16,9 @@ title: Get-MgUserDefaultCalendar The user's primary calendar. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserDefaultCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserDefaultCalendar?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index 2253ca00e8d7b..568428436ee1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -17,6 +17,9 @@ The events in the calendar. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserDefaultCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserDefaultCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index ab292fe3a6e18..c8d99d9eb815e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -18,6 +18,9 @@ Default is to show Events under the Default Calendar. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md index b0011dfdbad5d..c040217366c52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md @@ -18,6 +18,9 @@ Navigation property. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index 7a29ef8646e32..485c067aceed5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md @@ -15,6 +15,9 @@ title: Get-MgUserEventAttachmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventAttachmentCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventAttachmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md index cd244f2f8f6d8..fc902f7f576d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md @@ -17,6 +17,9 @@ The calendar that contains the event. Navigation property. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventCalendar?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index c3402c8d00d27..dc299190c8796 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md @@ -15,6 +15,9 @@ title: Get-MgUserEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index 201258ed1b37a..671f0969ea9ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -18,6 +18,9 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md index 6f0fb9a06a701..8298e6fff7988 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md @@ -16,6 +16,9 @@ title: Get-MgUserEventExtension The collection of open extensions defined for the event. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventExtension?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md index 7a9c4d67d2b5a..832ea12f8e06d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md @@ -15,6 +15,9 @@ title: Get-MgUserEventExtensionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventExtensionCount](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventExtensionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 0356765d579d9..4f1667f63a86a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -19,6 +19,9 @@ Navigation property. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventInstance](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventInstance?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md index 43406fed9034e..491f3acd5ec52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md @@ -18,6 +18,9 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserEventInstanceDelta](/powershell/module/Microsoft.Graph.Beta.Calendar/Get-MgBetaUserEventInstanceDelta?view=graph-powershell-beta) + ## SYNTAX ### Delta (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index b954137811e41..12c4f97ed5785 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -15,6 +15,9 @@ title: Invoke-MgAcceptGroupEvent Accept the specified event in a user calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### AcceptExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index bc41fc68be957..7bba6fd75f7fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -17,6 +17,9 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptGroupEventTentatively](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptGroupEventTentatively?view=graph-powershell-beta) + ## SYNTAX ### AcceptExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index 800b248bb1e78..5697ffa3e70de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -15,6 +15,9 @@ title: Invoke-MgAcceptUserEvent Accept the specified event in a user calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptUserEvent?view=graph-powershell-beta) + ## SYNTAX ### AcceptExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index c6a1b6da69c75..b87450f6de9b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -17,6 +17,9 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaAcceptUserEventTentatively](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaAcceptUserEventTentatively?view=graph-powershell-beta) + ## SYNTAX ### AcceptExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md index c683e56e88408..fdbd18620e7fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md @@ -15,6 +15,9 @@ title: Invoke-MgCalendarGroupCalendar Invoke function allowedCalendarSharingRoles +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaCalendarGroupCalendar?view=graph-powershell-beta) + ## SYNTAX ### Calendar (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md index 0e0c81b8f8ec5..032adc239c73d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md @@ -15,6 +15,9 @@ title: Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles Invoke function allowedCalendarSharingRoles +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles?view=graph-powershell-beta) + ## SYNTAX ### Calendar (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index 08b73709b1fc5..8f2e7afa65a64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -17,6 +17,9 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDeclineGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDeclineGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### DeclineExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index 0922a37193c9a..16f2d3873f520 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -17,6 +17,9 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDeclineUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDeclineUserEvent?view=graph-powershell-beta) + ## SYNTAX ### DeclineExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index aa331444aa6f0..b4838b06e1f52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -15,6 +15,9 @@ title: Invoke-MgDescendantPlace Invoke function descendants +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDescendantPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDescendantPlace?view=graph-powershell-beta) + ## SYNTAX ### Descendant (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md index baa711bf40368..f8a74d06ded5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md @@ -15,6 +15,9 @@ title: Invoke-MgDismissGroupEventReminder Dismiss a reminder that has been triggered for an event in a user calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDismissGroupEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDismissGroupEventReminder?view=graph-powershell-beta) + ## SYNTAX ### Dismiss (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index a537d2738aa95..f0a87176706b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -15,6 +15,9 @@ title: Invoke-MgDismissUserEventReminder Dismiss a reminder that has been triggered for an event in a user calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDismissUserEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaDismissUserEventReminder?view=graph-powershell-beta) + ## SYNTAX ### Dismiss (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index e22cc51751944..238fe4ae7f1e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -17,6 +17,9 @@ This action allows the organizer or attendee of a meeting event to forward the\r If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaForwardGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaForwardGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### ForwardExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 9aa5081ff0731..b83e602dc20e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -17,6 +17,9 @@ This action allows the organizer or attendee of a meeting event to forward the\r If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\ralso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\rcopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaForwardUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaForwardUserEvent?view=graph-powershell-beta) + ## SYNTAX ### ForwardExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index 6f258c7102fd5..cb1bf35a340ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -15,6 +15,9 @@ title: Invoke-MgSnoozeGroupEventReminder Postpone a reminder for an event in a user calendar until a new time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaSnoozeGroupEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaSnoozeGroupEventReminder?view=graph-powershell-beta) + ## SYNTAX ### SnoozeExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 4d0404fcc70b5..0f8640e0cf526 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -15,6 +15,9 @@ title: Invoke-MgSnoozeUserEventReminder Postpone a reminder for an event in a user calendar until a new time. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaSnoozeUserEventReminder](/powershell/module/Microsoft.Graph.Beta.Calendar/Invoke-MgBetaSnoozeUserEventReminder?view=graph-powershell-beta) + ## SYNTAX ### SnoozeExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md index 5652f5e2c70c1..96aeb7cb7e62d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md @@ -15,6 +15,9 @@ title: New-MgGroupCalendarEvent Create new navigation property to events for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md index 6626bf1a3ae6f..4b548e9699f54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md @@ -15,6 +15,9 @@ title: New-MgGroupCalendarPermission Create new navigation property to calendarPermissions for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md index 70d3f3960bdca..c1f699e28464b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md @@ -15,6 +15,9 @@ title: New-MgGroupEvent Use this API to create a new event. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index c3d9b1a277074..f0c2c4345d07b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -15,6 +15,9 @@ title: New-MgGroupEventAttachment Create new navigation property to attachments for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index 0872d13c0d508..90948ef96ce94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -22,6 +22,9 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupEventAttachmentUploadSession](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventAttachmentUploadSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md index 1438399c762b7..f512328472b55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md @@ -17,6 +17,9 @@ Create an open extension (openTypeExtension object) and add custom properties in You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaGroupEventExtension?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index f578c87745a23..4983e255e5fe9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -16,6 +16,9 @@ title: New-MgPlace Create a new place object. You can also use this method to create the following child object types: building, floor, section, room, workspace, or desk. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlace?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md index f5ffff2258058..d1ebe9565783a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md index d595c9788cbfd..4ba19867cd157 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingMapFootprint Create new navigation property to footprints for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md index 2599e961c42c6..da331fece68ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingMapLevel Create new navigation property to levels for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md index b376e6bd997a7..8eabe88a5aca3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingMapLevelFixture Create new navigation property to fixtures for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md index a51d6bb2aef63..1c6ce2d717f82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingMapLevelSection Create new navigation property to sections for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md index 411efd56dddb6..2ba5f772cd173 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsBuildingMapLevelUnit Create new navigation property to units for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md index 2fe8ac1080818..615eaeaf09a32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsDeskCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md index b5d9cad65259f..588fcec790169 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsFloorCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md index 9bdb26224df94..25194973b66df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md index 79638e7f516b6..30004b5c9aa7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomListCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md index d025aa5f6d0af..371d3399c1ae7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomListRoom Create new navigation property to rooms for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md index 55234da19f882..7420a2218be31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomListRoomCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md index 4f021df1dd26c..dcd172188185c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomListWorkspace Create new navigation property to workspaces for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md index 202088bf2206d..6a97340818baa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsRoomListWorkspaceCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md index 0ff36f70c38e0..7da36698755d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsSectionCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md index 255df7d648f6b..922eb99c64496 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md @@ -15,6 +15,9 @@ title: New-MgPlaceAsWorkspaceCheck Create new navigation property to checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md index f2b031b33b429..c17af3e5c43e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md @@ -16,6 +16,9 @@ title: New-MgPlaceCheck Create a new checkInClaim object to record the check-in status for a specific place, such as a desk or a room, associated with a specific calendar reservation. This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaPlaceCheck?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index acaeaeb6ee7cc..6a3784673ab20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -15,6 +15,9 @@ title: New-MgUserCalendar Create new navigation property to calendars for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendar?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index bc4b28331d384..287e9f09b0fad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -15,6 +15,9 @@ title: New-MgUserCalendarEvent Create new navigation property to events for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index 6bba53be5ebfc..4216a890cd65c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -15,6 +15,9 @@ title: New-MgUserCalendarGroup Create new navigation property to calendarGroups for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarGroup?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index 8afe1f96a667e..ab124e9912119 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -15,6 +15,9 @@ title: New-MgUserCalendarGroupCalendar Create new navigation property to calendars for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarGroupCalendar](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarGroupCalendar?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md index c1e683a13bcae..cff628509ea48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md @@ -15,6 +15,9 @@ title: New-MgUserCalendarPermission Create new navigation property to calendarPermissions for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index 5634d71c54eff..42c56ebc2a351 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -15,6 +15,9 @@ title: New-MgUserDefaultCalendarEvent Create new navigation property to events for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserDefaultCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserDefaultCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index 733ffb8c2bf5c..67679b686929a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -15,6 +15,9 @@ title: New-MgUserEvent Create new navigation property to events for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index eb0651eb7c80e..b53fb09e9daaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -15,6 +15,9 @@ title: New-MgUserEventAttachment Create new navigation property to attachments for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index cefac7625a5a6..20e66b7a6df25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -22,6 +22,9 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserEventAttachmentUploadSession](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventAttachmentUploadSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md index a58547d850a4a..bd22f1a24cab6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md @@ -15,6 +15,9 @@ title: New-MgUserEventExtension Create new navigation property to extensions for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/New-MgBetaUserEventExtension?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index facf228218cad..58688a8b0c002 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md @@ -15,6 +15,9 @@ title: Remove-MgGroupCalendarEvent Delete navigation property events for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md index 31b323f642a8a..423f6acefe4d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md @@ -15,6 +15,9 @@ title: Remove-MgGroupCalendarPermanent Invoke action permanentDelete +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarPermanent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index 2a48665d288dd..e4d561b282758 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md @@ -15,6 +15,9 @@ title: Remove-MgGroupCalendarPermission Delete navigation property calendarPermissions for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index b8c54ee82faf0..fb9869f075bfb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md @@ -15,6 +15,9 @@ title: Remove-MgGroupEvent Delete an event object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md index 00053c75756ae..d8e712aecac11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md @@ -15,6 +15,9 @@ title: Remove-MgGroupEventAttachment Delete navigation property attachments for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md index 4e45f2ddf248b..57016005378a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md @@ -15,6 +15,9 @@ title: Remove-MgGroupEventExtension Delete navigation property extensions for groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventExtension?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md index fe6b3aa6c36f8..ff8ebceb2689a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md @@ -15,6 +15,9 @@ title: Remove-MgGroupEventPermanent Invoke action permanentDelete +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaGroupEventPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaGroupEventPermanent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index 33271b3299e92..dda1f9f7bb206 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md @@ -16,6 +16,9 @@ title: Remove-MgPlace Delete a place object. You can also use this method to delete the following child object types: building, floor, section, or desk. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlace?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md index 51029dbd21580..cd6d971280725 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md index e0081422b95a8..1ff94666b9776 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMap Delete the map of a specific building. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md index 249928be5ec36..72bdbd8ee5ef0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMapFootprint Delete navigation property footprints for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md index d353cbe52e50a..fd4770f2fd0dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMapLevel Delete navigation property levels for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md index 4f7472ce888f9..0eaa7163bf3f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMapLevelFixture Delete a fixture on a specified floor. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md index cdf39ba63021a..5dd3dc2aafc04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMapLevelSection Delete navigation property sections for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md index d227d83f67c2a..89d7546617fb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsBuildingMapLevelUnit Delete a unitMap object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md index c898859b73b89..9aee4993e3c59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsDeskCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md index ed04fc08148c0..591e179286c76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsFloorCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md index afb6f522a58af..6572f32793bcc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md index 5ea6633340867..862033be55fe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomListCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md index 76d7e6fb17440..d73391fc512f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomListRoom Delete navigation property rooms for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md index 29be38806db43..8ed3d6e2b16ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomListRoomCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md index d0d086dda29f0..ee9a02a781824 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomListWorkspace Delete navigation property workspaces for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md index aeb46263f9553..fb345c62cd061 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsRoomListWorkspaceCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md index 9f9da80e70211..b0603d58115ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsSectionCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md index 20f69f7877118..086cd432f1661 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceAsWorkspaceCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md index ea06fe6a5763b..5e43c1c9349c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md @@ -15,6 +15,9 @@ title: Remove-MgPlaceCheck Delete navigation property checkIns for places +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaPlaceCheck?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index 7baf954bffa9b..9137186ab0969 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -15,6 +15,9 @@ title: Remove-MgUserCalendarGroup Delete navigation property calendarGroups for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarGroup?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index 4b5f53fca5ba2..545766e6ac09d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -15,6 +15,9 @@ title: Remove-MgUserCalendarPermanent Invoke action permanentDelete +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarPermanent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index 5f14c26f8ad08..eefc000aff6c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -15,6 +15,9 @@ title: Remove-MgUserCalendarPermission Delete calendarPermission. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index 8d3f78b838c1d..676a850a5feae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -15,6 +15,9 @@ title: Remove-MgUserEvent Delete navigation property events for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md index 022302ac20421..ad8b455146c82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md @@ -15,6 +15,9 @@ title: Remove-MgUserEventAttachment Delete navigation property attachments for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventAttachment](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventAttachment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md index 584f8935f292b..07b2ebb14d417 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md @@ -15,6 +15,9 @@ title: Remove-MgUserEventExtension Delete navigation property extensions for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventExtension?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index 347d2ce9ce3f0..a333227d263ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md @@ -15,6 +15,9 @@ title: Remove-MgUserEventPermanent Invoke action permanentDelete +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserEventPermanent](/powershell/module/Microsoft.Graph.Beta.Calendar/Remove-MgBetaUserEventPermanent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index f594757e37845..f82411aea560b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -19,6 +19,9 @@ The organizer can also cancel an occurrence of a recurring meeting \rby providin An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Stop-MgBetaGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### CancelExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index bea1772029026..12002e74d0f2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -19,6 +19,9 @@ The organizer can also cancel an occurrence of a recurring meeting \rby providin An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\rerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\rthe organizer send a custom message to the attendees about the cancellation. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Stop-MgBetaUserEvent?view=graph-powershell-beta) + ## SYNTAX ### CancelExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index 8524c22b729a4..468c1b8eeb901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -15,6 +15,9 @@ title: Update-MgGroupCalendarEvent Update an event object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaGroupCalendarEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupCalendarEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md index 212ac2c2d4622..541b8921a7a8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md @@ -15,6 +15,9 @@ title: Update-MgGroupCalendarPermission Update the navigation property calendarPermissions in groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaGroupCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index 4eddd822fb196..86182cdfc7377 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -15,6 +15,9 @@ title: Update-MgGroupEvent Update the navigation property events in groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaGroupEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md index 0553f9dce338c..2c12a5ac1ace3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md @@ -15,6 +15,9 @@ title: Update-MgGroupEventExtension Update the navigation property extensions in groups +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaGroupEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaGroupEventExtension?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index 637cfb00e8a2a..bc8d50d929493 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -16,6 +16,9 @@ title: Update-MgPlace Update the properties of place object that can be a building, floor, section, desk, room, workspace, or roomList. You can identify the place by specifying the id property. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlace](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlace?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md index 929d164577479..7c116f9ac48d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md index bf49d551440b9..ad0fd9437780f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMap Update the navigation property map in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMap](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMap?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md index 0b5c16bd37401..fe81e9d08c600 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMapFootprint Update the navigation property footprints in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapFootprint](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapFootprint?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md index 49287867005e6..f12ec55f6edaf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMapLevel Update the navigation property levels in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevel](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevel?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md index 90e3c7a2601fb..41ee649d82a2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMapLevelFixture Update the properties of an existing fixtureMap object in IMDF format on a specified floor, or create one if it doesn't exist. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelFixture](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelFixture?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md index 62400835e835d..412f37c21e580 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMapLevelSection Update the navigation property sections in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelSection](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelSection?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md index 7c2e77fd63864..497c0f254a51e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsBuildingMapLevelUnit Update the properties of an existing unitMap object in IMDF format on a specified floor, or create one if it doesn't exist. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsBuildingMapLevelUnit](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsBuildingMapLevelUnit?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md index 1366b9aca5a26..f1736efa72aab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsDeskCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsDeskCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsDeskCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md index f03f06b2a6d1a..08f259a3603e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsFloorCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsFloorCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsFloorCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md index d08a48d572c86..2527d6533eecc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md index 3b62176a24b35..11026df158476 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomListCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md index fe348d15fc3d5..1e078341d33d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomListRoom Update the navigation property rooms in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListRoom](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListRoom?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md index aa6d0cf4dd2b9..6379eba454781 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomListRoomCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListRoomCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListRoomCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md index b9607e923b5a5..61217485f0555 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomListWorkspace Update the navigation property workspaces in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListWorkspace](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListWorkspace?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md index 7bed036c92238..e6cbd5801e3d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsRoomListWorkspaceCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsRoomListWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsRoomListWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md index ac9a48287b9e3..84dcf50d7308f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsSectionCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsSectionCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsSectionCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md index 73911b0f98ff1..dc1180ffff1b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceAsWorkspaceCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceAsWorkspaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceAsWorkspaceCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md index 6e49602bdc9f4..60624a8ddcb43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md @@ -15,6 +15,9 @@ title: Update-MgPlaceCheck Update the navigation property checkIns in places +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaPlaceCheck](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaPlaceCheck?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index 926cf22fdfb79..b85574c444ca2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md @@ -15,6 +15,9 @@ title: Update-MgUserCalendarGroup Update the navigation property calendarGroups in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserCalendarGroup](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserCalendarGroup?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md index cd6d03ba15e4b..27055fb0b36a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md @@ -15,6 +15,9 @@ title: Update-MgUserCalendarPermission Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserCalendarPermission](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserCalendarPermission?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index bde04f7f10090..d27b9179c48da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -15,6 +15,9 @@ title: Update-MgUserEvent Update the navigation property events in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserEvent](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md index 45721afbd2891..0f2491fbe0056 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md @@ -15,6 +15,9 @@ title: Update-MgUserEventExtension Update the navigation property extensions in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserEventExtension](/powershell/module/Microsoft.Graph.Beta.Calendar/Update-MgBetaUserEventExtension?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From 2663d8f825bc0168297a6cc4dd559ea693d00ef1 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:36 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- .../Get-MgGroupCalendar.md | 11 +---- .../Get-MgGroupCalendarPermission.md | 12 +----- .../Get-MgGroupCalendarSchedule.md | 11 +---- .../Get-MgGroupCalendarView.md | 11 +---- .../Get-MgGroupEvent.md | 7 +++- .../Get-MgGroupEventAttachment.md | 12 +----- .../Get-MgGroupEventCalendar.md | 11 +---- .../Get-MgGroupEventDelta.md | 11 +---- .../Get-MgGroupEventExtension.md | 7 +++- .../Get-MgGroupEventInstance.md | 11 +---- .../Get-MgGroupEventInstanceDelta.md | 11 +---- .../Get-MgPlaceAsBuilding.md | 7 +++- .../Get-MgPlaceAsBuildingMap.md | 7 +++- .../Get-MgPlaceAsBuildingMapFootprint.md | 7 +++- .../Get-MgPlaceAsBuildingMapLevel.md | 7 +++- .../Get-MgPlaceAsBuildingMapLevelFixture.md | 7 +++- .../Get-MgPlaceAsBuildingMapLevelSection.md | 7 +++- .../Get-MgPlaceAsBuildingMapLevelUnit.md | 7 +++- .../Get-MgPlaceAsDesk.md | 7 +++- .../Get-MgPlaceAsFloor.md | 7 +++- .../Get-MgPlaceAsRoom.md | 7 +++- .../Get-MgPlaceAsRoomList.md | 7 +++- .../Get-MgPlaceAsSection.md | 7 +++- .../Get-MgPlaceAsWorkspace.md | 7 +++- .../Get-MgPlaceCheck.md | 7 +++- .../Get-MgUserCalendar.md | 9 +++- .../Get-MgUserCalendarEvent.md | 11 +---- .../Get-MgUserCalendarGroup.md | 9 +++- .../Get-MgUserCalendarGroupCalendar.md | 8 ++-- .../Get-MgUserCalendarPermission.md | 7 +++- .../Get-MgUserCalendarView.md | 10 +++-- .../Get-MgUserDefaultCalendar.md | 9 +++- .../Get-MgUserEvent.md | 16 +++++-- .../Get-MgUserEventAttachment.md | 9 +++- .../Get-MgUserEventCalendar.md | 11 +---- .../Get-MgUserEventDelta.md | 11 +---- .../Get-MgUserEventExtension.md | 12 +----- .../Get-MgUserEventInstance.md | 9 +++- .../Get-MgUserEventInstanceDelta.md | 11 +---- .../Invoke-MgAcceptGroupEvent.md | 11 +---- .../Invoke-MgAcceptGroupEventTentatively.md | 11 +---- .../Invoke-MgAcceptUserEvent.md | 7 +++- .../Invoke-MgAcceptUserEventTentatively.md | 10 +++-- .../Invoke-MgDeclineGroupEvent.md | 11 +---- .../Invoke-MgDeclineUserEvent.md | 10 +++-- .../Invoke-MgDismissGroupEventReminder.md | 11 +---- .../Invoke-MgDismissUserEventReminder.md | 7 +++- .../Invoke-MgForwardGroupEvent.md | 11 +---- .../Invoke-MgForwardUserEvent.md | 7 +++- .../Invoke-MgSnoozeGroupEventReminder.md | 11 +---- .../Invoke-MgSnoozeUserEventReminder.md | 7 +++- .../New-MgGroupCalendarPermission.md | 11 +---- .../New-MgGroupEvent.md | 7 +++- .../New-MgGroupEventAttachment.md | 11 +---- ...New-MgGroupEventAttachmentUploadSession.md | 11 +---- .../New-MgGroupEventExtension.md | 7 +++- .../Microsoft.Graph.Calendar/New-MgPlace.md | 42 ++++++++++++++++--- .../New-MgPlaceCheck.md | 7 +++- .../New-MgUserCalendar.md | 9 +++- .../New-MgUserCalendarEvent.md | 16 +++++-- .../New-MgUserCalendarGroup.md | 9 +++- .../New-MgUserCalendarGroupCalendar.md | 9 +++- .../New-MgUserCalendarPermission.md | 11 +---- .../New-MgUserEvent.md | 23 ++++++++-- .../New-MgUserEventAttachment.md | 16 +++++-- .../New-MgUserEventAttachmentUploadSession.md | 11 +---- .../New-MgUserEventExtension.md | 11 +---- .../Remove-MgGroupCalendarPermanent.md | 11 +---- .../Remove-MgGroupCalendarPermission.md | 11 +---- .../Remove-MgGroupEvent.md | 7 +++- .../Remove-MgGroupEventAttachment.md | 11 +---- .../Remove-MgGroupEventExtension.md | 11 +---- .../Remove-MgPlace.md | 7 +++- .../Remove-MgPlaceAsBuildingMap.md | 7 +++- ...Remove-MgPlaceAsBuildingMapLevelFixture.md | 7 +++- .../Remove-MgPlaceAsBuildingMapLevelUnit.md | 7 +++- .../Remove-MgUserCalendarGroup.md | 9 +++- .../Remove-MgUserCalendarPermanent.md | 7 +++- .../Remove-MgUserCalendarPermission.md | 7 +++- .../Remove-MgUserEvent.md | 9 +++- .../Remove-MgUserEventAttachment.md | 9 +++- .../Remove-MgUserEventExtension.md | 11 +---- .../Stop-MgGroupEvent.md | 11 +---- .../Stop-MgUserEvent.md | 7 +++- .../Update-MgGroupCalendarEvent.md | 7 +++- .../Update-MgGroupCalendarPermission.md | 11 +---- .../Update-MgGroupEvent.md | 11 +---- .../Update-MgGroupEventExtension.md | 11 +---- .../Update-MgPlace.md | 42 ++++++++++++++++--- ...Update-MgPlaceAsBuildingMapLevelFixture.md | 14 ++++++- .../Update-MgPlaceAsBuildingMapLevelUnit.md | 14 ++++++- .../Update-MgUserCalendarGroup.md | 9 +++- .../Update-MgUserCalendarPermission.md | 7 +++- .../Update-MgUserEvent.md | 9 +++- .../Update-MgUserEventExtension.md | 11 +---- 95 files changed, 513 insertions(+), 462 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md index d87554469f49a..5e7edbd55f5cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, The group's calendar. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -391,5 +381,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md index b6c5466e19e72..fd4e350b3abcf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, The permissions of the users with whom the calendar is shared. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -599,6 +589,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index 20fdce5d34cfc..eb1c048f9d4f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -618,5 +608,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md index ead3d2ecb6506..169560e897cd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md @@ -44,16 +44,6 @@ The calendar view for the calendar. Navigation property. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -550,5 +540,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index 31630d28a494d..46bbeeac454f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -67,13 +67,18 @@ Get an event object. | Application | Calendars.ReadBasic, Calendars.Read, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId +``` +This example shows how to use the Get-MgGroupEvent Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md index 227214e649828..5d17a45fb30f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md @@ -65,16 +65,6 @@ Navigation property. Read-only. Nullable. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -632,6 +622,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md index 67a29df1923f1..a93a67fe3a41a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md @@ -51,16 +51,6 @@ The calendar that contains the event. Navigation property. Read-only. -## 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.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index 33162b4fe5907..811036323845a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -65,16 +65,6 @@ This allows you to maintain and synchronize a local store of events in the speci | Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | | Application | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -645,5 +635,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md index 287b082a2cfb0..988954d5154cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md @@ -64,13 +64,18 @@ The table in the Permissions section lists the resources that support open exten The following table lists the three scenarios where you can get an open extension from a supported resource instance. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId +``` +This example shows how to use the Get-MgGroupEventExtension Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index f692e33093c70..e0eaabf06d066 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -57,16 +57,6 @@ Nullable. | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | | Application | Calendars.ReadBasic, Calendars.Read, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -584,5 +574,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md index aa59ff5a48046..ebe941f3b415c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md @@ -58,16 +58,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -659,5 +649,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md index 204a7b429757a..8af0df2ab4bbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all buildings defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuilding +``` +This example will list all buildings defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md index 39da04cb05150..7d9d6e95d4ba4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md @@ -48,13 +48,18 @@ This cmdlet has the following aliases, Get the map of a building in IMDF format. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMap -PlaceId $placeId +``` +This example shows how to use the Get-MgPlaceAsBuildingMap Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md index 32ee17505c1da..4ab71a5ec2359 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md @@ -62,13 +62,18 @@ Represents the approximate physical extent of a referenced building. It corresponds to footprint.geojson in IMDF format. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMapFootprint -PlaceId $placeId +``` +This example shows how to use the Get-MgPlaceAsBuildingMapFootprint Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md index f73f33edaa700..018d4c712b792 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md @@ -61,13 +61,18 @@ Represents a physical floor structure within a building. It corresponds to level.geojson in IMDF format. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMapLevel -PlaceId $placeId +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevel Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md index 11aa89d35beff..7d2f5b9f5ea11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md @@ -62,13 +62,18 @@ Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelFixture Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md index 6eb3b7d852cac..347809de7eb57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md @@ -62,13 +62,18 @@ Collection of sections (such as zones or partitions) on this level. Supports upsert. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMapLevelSection -PlaceId $placeId -LevelMapId $levelMapId +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelSection Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md index 81ef77e49dc6a..802404aaadcc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md @@ -62,13 +62,18 @@ Collection of units (such as rooms or offices) on this level. Supports upsert. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelUnit Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md index 8ba3b859b5302..4d4edc5c6f886 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all desks defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsDesk +``` +This example will list all desks defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md index a45d7cc9d5f3a..d2a02da310ff2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all floors defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsFloor +``` +This example will list all floors defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md index 3fbd87d471b89..8deeaa424e78b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all the rooms defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsRoom +``` +This example will list all the rooms defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md index 28e9a2dcac1a8..1951f4252cab3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md @@ -61,13 +61,18 @@ Read the properties of a place object specified by its ID. The place object can be one of the following types: The listed resources are derived from the place object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsRoomList -PlaceId $placeId +``` +This example shows how to use the Get-MgPlaceAsRoomList Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md index 41ff5a72e0ff7..4b538bb0602cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all sections defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsSection +``` +This example will list all sections defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md index 6b2e96538afad..e5dd6b7b8095b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md @@ -61,13 +61,18 @@ Get a collection of the specified type of place objects defined in a tenant. You can do the following for a given tenant:\r- List all buildings.\r- List all floors.\r- List all sections.\r- List all desks.\r- List all rooms.\r- List all workspaces.\r- List all room lists.\r- List rooms in a specific room list.\r- List workspaces in a specific room list. ## EXAMPLES +### Example 1: List all workspaces defined in the tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceAsWorkspace +``` +This example will list all workspaces defined in the tenant + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md index 76640b98be602..a9a8823bf6ee9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md @@ -62,13 +62,18 @@ Read the properties and relationships of a checkInClaim object. This API provides the check-in status for a specific place, such as a desk, room, or workspace, associated with a particular reservation. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlaceCheck -PlaceId $placeId -CheckInClaimCalendarEventId $checkInClaimCalendarEventId +``` +This example shows how to use the Get-MgPlaceCheck Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md index 2cb95f44365f1..5769080908efd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md @@ -63,13 +63,18 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendar -UserId $userId +``` +This example shows how to use the Get-MgUserCalendar Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index ed54efce0655c..365d8278a954c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -52,16 +52,6 @@ Read-only. | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -535,5 +525,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index 2055a5d83ddce..6b445a2af5dd3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md @@ -71,13 +71,18 @@ Nullable. | Application | Calendars.ReadBasic, Calendars.Read, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId +``` +This example shows how to use the Get-MgUserCalendarGroup Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index 79a99f1cb62a9..226fb404dc856 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -55,12 +55,14 @@ Nullable. | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | ## EXAMPLES - -### EXAMPLE 1 - +### Example 1: Using the Get-MgUserCalendarGroupCalendar Cmdlet +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId +``` +This example shows how to use the Get-MgUserCalendarGroupCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md index 78f4208c4b63e..16ad89123cae1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md @@ -90,13 +90,18 @@ This cmdlet has the following aliases, Get the specified permissions object of a user or group calendar that has been shared. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Get-MgUserCalendarPermission -UserId $userId +``` +This example shows how to use the Get-MgUserCalendarPermission Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index 8df08560783d5..63ded7285a7d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -65,12 +65,14 @@ Read-only. | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | ## EXAMPLES - -### EXAMPLE 1 - +### Example 1: Using the Get-MgUserCalendarView Cmdlet +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. -Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" +Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" +``` +This example shows how to use the Get-MgUserCalendarView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md index b3f73d8af2788..83f17a8093e9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md @@ -50,13 +50,18 @@ The user's primary calendar. Read-only. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserDefaultCalendar -UserId $userId +``` +This example shows how to use the Get-MgUserDefaultCalendar Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index c8d99d9eb815e..a4ee2d95ffb22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -73,20 +73,30 @@ Nullable. | Application | Calendars.ReadBasic, Calendars.Read, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### EXAMPLE 2 +### Example 2: Code snippet +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md index c040217366c52..dd8f5e95f64c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md @@ -66,13 +66,18 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventAttachment -UserId $userId -EventId $eventId +``` +This example shows how to use the Get-MgUserEventAttachment Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md index fc902f7f576d7..aa78fa9ed3650 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md @@ -51,16 +51,6 @@ The calendar that contains the event. Navigation property. Read-only. -## 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.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index 671f0969ea9ea..8d76f9c911050 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -65,16 +65,6 @@ This allows you to maintain and synchronize a local store of events in the speci | Delegated (personal Microsoft account) | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | | Application | Calendars.Read, Calendars.ReadBasic, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -645,5 +635,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md index 8298e6fff7988..b09124c169756 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, The collection of open extensions defined for the event. Nullable. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -632,6 +622,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 4f1667f63a86a..5369e4ca95442 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -58,13 +58,18 @@ Nullable. | Application | Calendars.ReadBasic, Calendars.Read, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" +``` +This example shows how to use the Get-MgUserEventInstance Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md index 491f3acd5ec52..1f91653f50215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md @@ -58,16 +58,6 @@ Typically, synchronizing events in a calendarView in a local store entails a rou The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -659,5 +649,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index 12c4f97ed5785..0ffad0a7a1da9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Accept the specified event in a user calendar. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index 7bba6fd75f7fc..75d64c320f6be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -73,16 +73,6 @@ Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -639,5 +629,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index 5697ffa3e70de..ff602215f4212 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -78,8 +78,9 @@ Accept the specified event in a user calendar. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -91,6 +92,10 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgAcceptUserEvent -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Invoke-MgAcceptUserEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index b87450f6de9b4..ae1030c35da27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -82,14 +82,14 @@ For more information on how to propose a time, and how to receive and accept a n | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ - comment = "I may not be able to make this week. -How about next week?" + comment = "I may not be able to make this week. How about next week?" sendResponse = $true proposedNewTime = @{ start = @{ @@ -106,6 +106,10 @@ How about next week?" # A UPN can also be used as -UserId. Invoke-MgAcceptUserEventTentatively -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Invoke-MgAcceptUserEventTentatively Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index 8f2e7afa65a64..8c53057910037 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -73,16 +73,6 @@ Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -639,5 +629,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index 16f2d3873f520..ab7f61ff502b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -82,14 +82,14 @@ For more information on how to propose a time, and how to receive and accept a n | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ - comment = "I won't be able to make this week. -How about next week?" + comment = "I won't be able to make this week. How about next week?" sendResponse = $true proposedNewTime = @{ start = @{ @@ -106,6 +106,10 @@ How about next week?" # A UPN can also be used as -UserId. Invoke-MgDeclineUserEvent -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Invoke-MgDeclineUserEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md index f8a74d06ded5c..bb0e3b6f3983a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Dismiss a reminder that has been triggered for an event in a user calendar. -## 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.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index f0a87176706b3..cfb83e46d50ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -56,14 +56,19 @@ Dismiss a reminder that has been triggered for an event in a user calendar. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId +``` +This example shows how to use the Invoke-MgDismissUserEventReminder Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index 238fe4ae7f1e9..08a57f64b56f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -81,16 +81,6 @@ This convenience is not available when forwarding from an Outlook.com account. | Delegated (personal Microsoft account) | Calendars.Read, | | Application | Calendars.Read, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -613,5 +603,6 @@ TORECIPIENTS : . + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index b83e602dc20e0..8ffe6c3334662 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -82,8 +82,9 @@ This convenience is not available when forwarding from an Outlook.com account. | Application | Calendars.Read, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -102,6 +103,10 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Invoke-MgForwardUserEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index cb1bf35a340ae..e6c51d9a923bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Postpone a reminder for an event in a user calendar until a new time. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -573,5 +563,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 0f8640e0cf526..cde09b90435aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -78,8 +78,9 @@ Postpone a reminder for an event in a user calendar until a new time. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -93,6 +94,10 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgSnoozeUserEventReminder -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Invoke-MgSnoozeUserEventReminder Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md index 4b548e9699f54..1592f111048ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Create new navigation property to calendarPermissions for groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -671,5 +661,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md index c1f699e28464b..684eab1e71ba0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md @@ -104,8 +104,9 @@ This cmdlet has the following aliases, Use this API to create a new event. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -139,6 +140,10 @@ $params = @{ New-MgGroupEvent -GroupId $groupId -BodyParameter $params +``` +This example shows how to use the New-MgGroupEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index f0c2c4345d07b..a5555aebb7c2a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -77,16 +77,6 @@ Create new navigation property to attachments for groups | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -692,5 +682,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index 90948ef96ce94..daf93b9bfda9c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -83,16 +83,6 @@ Request headers for each PUT operation let you specify the exact range of bytes This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -584,5 +574,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md index f512328472b55..43d61adf740d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md @@ -70,8 +70,9 @@ You can create an open extension in a resource instance and store custom data to The table in the Permissions section lists the resources that support open extensions. ## EXAMPLES +### Example 1: Create an extension in the specified group event -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -85,6 +86,10 @@ $params = @{ New-MgGroupEventExtension -GroupId $groupId -EventId $eventId -BodyParameter $params +``` +This example will create an extension in the specified group event + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index 4983e255e5fe9..09c5fc33da6d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -61,8 +61,9 @@ You can also use this method to create the following child object types: buildin | Application | Place.ReadWrite.All, | ## EXAMPLES +### Example 1: Create a building -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -73,7 +74,12 @@ $params = @{ New-MgPlace -BodyParameter $params -### EXAMPLE 2 +``` +This example will create a building + +### Example 2: Create a floor + +```powershell Import-Module Microsoft.Graph.Calendar @@ -85,7 +91,12 @@ $params = @{ New-MgPlace -BodyParameter $params -### EXAMPLE 3 +``` +This example will create a floor + +### Example 3: Create a section + +```powershell Import-Module Microsoft.Graph.Calendar @@ -97,7 +108,12 @@ $params = @{ New-MgPlace -BodyParameter $params -### EXAMPLE 4 +``` +This example will create a section + +### Example 4: Create a desk + +```powershell Import-Module Microsoft.Graph.Calendar @@ -109,7 +125,12 @@ $params = @{ New-MgPlace -BodyParameter $params -### EXAMPLE 5 +``` +This example will create a desk + +### Example 5: Create a room + +```powershell Import-Module Microsoft.Graph.Calendar @@ -122,7 +143,12 @@ $params = @{ New-MgPlace -BodyParameter $params -### EXAMPLE 6 +``` +This example will create a room + +### Example 6: Create a workspace + +```powershell Import-Module Microsoft.Graph.Calendar @@ -137,6 +163,10 @@ $params = @{ New-MgPlace -BodyParameter $params +``` +This example will create a workspace + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md index c17af3e5c43e0..e93ded2166d77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md @@ -70,8 +70,9 @@ Create a new checkInClaim object to record the check-in status for a specific pl This check-in confirms that the reserved space is in use and prevents automatic release if auto-release policies are configured for that place. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -83,6 +84,10 @@ $params = @{ New-MgPlaceCheck -PlaceId $placeId -BodyParameter $params +``` +This example shows how to use the New-MgPlaceCheck Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index 6a3784673ab20..d045c3da5c01f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -92,9 +92,9 @@ Create new navigation property to calendars for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -103,6 +103,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendar -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserCalendar Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index 287e9f09b0fad..c0c67cc26dd83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -112,9 +112,9 @@ Create new navigation property to events for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Create an event in a specific calendar -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -148,9 +148,14 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params +``` +This example shows how to use the New-MgUserCalendarEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### EXAMPLE 2 +### Example 2: Create and enable an event as an online meeting +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -185,6 +190,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params +``` +This example shows how to use the New-MgUserCalendarEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index 4216a890cd65c..081d9edf40f6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -77,9 +77,9 @@ Create new navigation property to calendarGroups for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -88,6 +88,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroup -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserCalendarGroup Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index ab124e9912119..8fcd9765b839a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -95,9 +95,9 @@ Create new navigation property to calendars for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -106,6 +106,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params +``` +This example shows how to use the New-MgUserCalendarGroupCalendar Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md index cff628509ea48..16c8fd851823a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md @@ -112,16 +112,6 @@ This cmdlet has the following aliases, Create new navigation property to calendarPermissions for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -860,5 +850,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index 67679b686929a..eb033d0020e23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -112,9 +112,9 @@ Create new navigation property to events for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -149,9 +149,14 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. -### EXAMPLE 2 +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -199,9 +204,14 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. -### EXAMPLE 3 +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -237,6 +247,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index b53fb09e9daaa..b33e7c78d8aae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -78,9 +78,9 @@ Create new navigation property to attachments for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -91,9 +91,14 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the New-MgUserEventAttachment Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### EXAMPLE 2 +### Example 2: Code snippet +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -107,6 +112,11 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the New-MgUserEventAttachment Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index 20e66b7a6df25..79769993f841a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -91,16 +91,6 @@ The following are the steps to attach a file to an Outlook item using an upload | Delegated (personal Microsoft account) | Calendars.ReadWrite, Mail.ReadWrite, | | Application | Calendars.ReadWrite, Mail.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -592,5 +582,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md index bd22f1a24cab6..a27cb52a60af4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md @@ -65,16 +65,6 @@ This cmdlet has the following aliases, Create new navigation property to extensions for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -532,5 +522,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md index 423f6acefe4d7..466a001b401e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Invoke action permanentDelete -## 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.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index e4d561b282758..7a9e53e7721f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md @@ -55,16 +55,6 @@ Delete navigation property calendarPermissions for groups | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index fb9869f075bfb..12298fab55f73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md @@ -56,13 +56,18 @@ Delete an event object. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgGroupEvent -GroupId $groupId -EventId $eventId +``` +This example shows how to use the Remove-MgGroupEvent Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md index d8e712aecac11..f3d68df5dfe50 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property attachments for groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AttachmentId @@ -473,5 +463,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md index 57016005378a4..131667ccd9d73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property extensions for groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -473,5 +463,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index dda1f9f7bb206..48b02b1e1a71d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md @@ -58,13 +58,18 @@ You can also use this method to delete the following child object types: buildin | Application | Place.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgPlace -PlaceId $placeId +``` +This example shows how to use the Remove-MgPlace Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md index 1ff94666b9776..524fcdaf36b28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md @@ -48,13 +48,18 @@ This cmdlet has the following aliases, Delete the map of a specific building. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgPlaceAsBuildingMap -PlaceId $placeId +``` +This example shows how to use the Remove-MgPlaceAsBuildingMap Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md index 0eaa7163bf3f9..12010e239cf8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md @@ -49,13 +49,18 @@ This cmdlet has the following aliases, Delete a fixture on a specified floor. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId +``` +This example shows how to use the Remove-MgPlaceAsBuildingMapLevelFixture Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md index 89d7546617fb7..9933d576e6033 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md @@ -48,13 +48,18 @@ This cmdlet has the following aliases, Delete a unitMap object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId +``` +This example shows how to use the Remove-MgPlaceAsBuildingMapLevelUnit Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index 9137186ab0969..21bf0c8a172af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -56,13 +56,18 @@ Delete navigation property calendarGroups for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId +``` +This example shows how to use the Remove-MgUserCalendarGroup Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index 545766e6ac09d..94f2590d6bf0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -74,13 +74,18 @@ Invoke action permanentDelete | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermanent -UserId $userId +``` +This example shows how to use the Remove-MgUserCalendarPermanent Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index eefc000aff6c8..8920d998c83bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -74,13 +74,18 @@ Delete calendarPermission. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId +``` +This example shows how to use the Remove-MgUserCalendarPermission Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index 676a850a5feae..ce0c31d3f0cef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -56,13 +56,18 @@ Delete navigation property events for users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEvent -UserId $userId -EventId $eventId +``` +This example shows how to use the Remove-MgUserEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md index ad8b455146c82..5775d6623a746 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md @@ -48,13 +48,18 @@ This cmdlet has the following aliases, Delete navigation property attachments for users ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId +``` +This example shows how to use the Remove-MgUserEventAttachment Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md index 07b2ebb14d417..623929d288a2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property extensions for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -473,5 +463,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index f82411aea560b..f213d1a0a27ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -83,16 +83,6 @@ You need to be an organizer to cancel a meeting.' This action differs from Delet | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -576,5 +566,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index 12002e74d0f2e..03fd04d3b8eb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -84,8 +84,9 @@ You need to be an organizer to cancel a meeting.' This action differs from Delet | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -96,6 +97,10 @@ $params = @{ # A UPN can also be used as -UserId. Stop-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Stop-MgUserEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index 468c1b8eeb901..1aa4583f3604b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -113,8 +113,9 @@ Update an event object. | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -126,6 +127,10 @@ $params = @{ Update-MgGroupCalendarEvent -GroupId $groupId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Update-MgGroupCalendarEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md index 541b8921a7a8e..bce7a47bf08e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Update the navigation property calendarPermissions in groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -699,5 +689,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index 86182cdfc7377..c356ac52e25f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -111,16 +111,6 @@ Update the navigation property events in groups | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -3154,5 +3144,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md index 2c12a5ac1ace3..b6d8fbdedce6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md @@ -66,16 +66,6 @@ This cmdlet has the following aliases, Update the navigation property extensions in groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -560,5 +550,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index bc8d50d929493..7aab4376ef1ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -84,8 +84,9 @@ You can identify the place by specifying the id property. | Application | Place.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -98,7 +99,12 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -### EXAMPLE 2 +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 2: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar @@ -110,7 +116,12 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -### EXAMPLE 3 +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 3: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar @@ -121,7 +132,12 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -### EXAMPLE 4 +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 4: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar @@ -134,7 +150,12 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -### EXAMPLE 5 +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 5: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar @@ -149,7 +170,12 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params -### EXAMPLE 6 +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 6: Code snippet + +```powershell Import-Module Microsoft.Graph.Calendar @@ -164,6 +190,10 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params +``` +This example shows how to use the Update-MgPlace Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md index 41ee649d82a2b..7a6e5111b0d9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md @@ -70,8 +70,9 @@ This cmdlet has the following aliases, Update the properties of an existing fixtureMap object in IMDF format on a specified floor, or create one if it doesn't exist. ## EXAMPLES +### Example 1: Update an existing fixtureMap -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -82,7 +83,12 @@ $params = @{ Update-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId -BodyParameter $params -### EXAMPLE 2 +``` +This example will update an existing fixturemap + +### Example 2: Create a fixtureMap if it doesn't exist + +```powershell Import-Module Microsoft.Graph.Calendar @@ -93,6 +99,10 @@ $params = @{ Update-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId -FixtureMapId $fixtureMapId -BodyParameter $params +``` +This example will create a fixturemap if it doesn't exist + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md index 497c0f254a51e..4da860a825e5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md @@ -70,8 +70,9 @@ This cmdlet has the following aliases, Update the properties of an existing unitMap object in IMDF format on a specified floor, or create one if it doesn't exist. ## EXAMPLES +### Example 1: Update an existing unitMap -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -82,7 +83,12 @@ $params = @{ Update-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId -BodyParameter $params -### EXAMPLE 2 +``` +This example will update an existing unitmap + +### Example 2: Create a unitMap if it doesn't exist + +```powershell Import-Module Microsoft.Graph.Calendar @@ -92,6 +98,10 @@ $params = @{ Update-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId -UnitMapId $unitMapId -BodyParameter $params +``` +This example will create a unitmap if it doesn't exist + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index b85574c444ca2..b2b84c63b9c16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md @@ -79,9 +79,9 @@ Update the navigation property calendarGroups in users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -90,6 +90,11 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params +``` +This example shows how to use the Update-MgUserCalendarGroup Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md index 27055fb0b36a9..093051f90bcb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md @@ -114,8 +114,9 @@ This cmdlet has the following aliases, Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.Calendar @@ -125,6 +126,10 @@ $params = @{ Update-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -BodyParameter $params +``` +This example shows how to use the Update-MgUserCalendarPermission Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index d27b9179c48da..8a75e0b1e904e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -112,9 +112,9 @@ Update the navigation property events in users | Application | Calendars.ReadWrite, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 - +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -137,6 +137,11 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the Update-MgUserEvent Cmdlet. + +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md index 0f2491fbe0056..d0a09a5a5b16c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md @@ -66,16 +66,6 @@ This cmdlet has the following aliases, Update the navigation property extensions in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -560,5 +550,6 @@ INPUTOBJECT ``: Identity Parameter + From 19c16aa9cdabb4324e4c5b2071b212a4cc442a4a Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:40 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- .../Get-MgGroupCalendarEvent.md | 11 +---------- .../Get-MgGroupCalendarPermissionCount.md | 11 +---------- .../Get-MgGroupEventAttachmentCount.md | 11 +---------- .../Microsoft.Graph.Calendar/Get-MgGroupEventCount.md | 11 +---------- .../Get-MgGroupEventExtensionCount.md | 11 +---------- .../Get-MgPlaceAsBuildingCheck.md | 11 +---------- .../Get-MgPlaceAsBuildingCheckInCount.md | 11 +---------- .../Get-MgPlaceAsBuildingMapFootprintCount.md | 11 +---------- .../Get-MgPlaceAsBuildingMapLevelCount.md | 11 +---------- .../Get-MgPlaceAsBuildingMapLevelFixtureCount.md | 11 +---------- .../Get-MgPlaceAsBuildingMapLevelSectionCount.md | 11 +---------- .../Get-MgPlaceAsBuildingMapLevelUnitCount.md | 11 +---------- .../Get-MgPlaceAsDeskCheck.md | 11 +---------- .../Get-MgPlaceAsDeskCheckInCount.md | 11 +---------- .../Get-MgPlaceAsFloorCheck.md | 11 +---------- .../Get-MgPlaceAsFloorCheckInCount.md | 11 +---------- .../Get-MgPlaceAsRoomCheck.md | 11 +---------- .../Get-MgPlaceAsRoomCheckInCount.md | 11 +---------- .../Get-MgPlaceAsRoomListCheck.md | 11 +---------- .../Get-MgPlaceAsRoomListCheckInCount.md | 11 +---------- .../Get-MgPlaceAsRoomListRoom.md | 11 +---------- .../Get-MgPlaceAsRoomListRoomCheck.md | 11 +---------- .../Get-MgPlaceAsRoomListRoomCheckInCount.md | 11 +---------- .../Get-MgPlaceAsRoomListRoomCount.md | 11 +---------- .../Get-MgPlaceAsRoomListWorkspace.md | 11 +---------- .../Get-MgPlaceAsRoomListWorkspaceCheck.md | 11 +---------- .../Get-MgPlaceAsRoomListWorkspaceCheckInCount.md | 11 +---------- .../Get-MgPlaceAsRoomListWorkspaceCount.md | 11 +---------- .../Get-MgPlaceAsSectionCheck.md | 11 +---------- .../Get-MgPlaceAsSectionCheckInCount.md | 11 +---------- .../Get-MgPlaceAsWorkspaceCheck.md | 11 +---------- .../Get-MgPlaceAsWorkspaceCheckInCount.md | 11 +---------- .../Get-MgPlaceCheckInCount.md | 11 +---------- .../Microsoft.Graph.Calendar/Get-MgPlaceCount.md | 11 +---------- .../Get-MgPlaceCountAsBuilding.md | 11 +---------- .../Get-MgPlaceCountAsDesk.md | 11 +---------- .../Get-MgPlaceCountAsFloor.md | 11 +---------- .../Get-MgPlaceCountAsRoom.md | 11 +---------- .../Get-MgPlaceCountAsRoomList.md | 11 +---------- .../Get-MgPlaceCountAsSection.md | 11 +---------- .../Get-MgPlaceCountAsWorkspace.md | 11 +---------- .../Get-MgUserCalendarCount.md | 11 +---------- .../Get-MgUserCalendarGroupCount.md | 11 +---------- .../Get-MgUserCalendarPermissionCount.md | 11 +---------- .../Get-MgUserDefaultCalendarEvent.md | 11 +---------- .../Get-MgUserEventAttachmentCount.md | 11 +---------- .../Microsoft.Graph.Calendar/Get-MgUserEventCount.md | 11 +---------- .../Get-MgUserEventExtensionCount.md | 11 +---------- .../Invoke-MgCalendarGroupCalendar.md | 11 +---------- ...CalendarUserCalendarAllowedCalendarSharingRoles.md | 11 +---------- .../Invoke-MgDescendantPlace.md | 11 +---------- .../New-MgGroupCalendarEvent.md | 11 +---------- .../New-MgPlaceAsBuildingCheck.md | 11 +---------- .../New-MgPlaceAsBuildingMapFootprint.md | 11 +---------- .../New-MgPlaceAsBuildingMapLevel.md | 11 +---------- .../New-MgPlaceAsBuildingMapLevelFixture.md | 11 +---------- .../New-MgPlaceAsBuildingMapLevelSection.md | 11 +---------- .../New-MgPlaceAsBuildingMapLevelUnit.md | 11 +---------- .../New-MgPlaceAsDeskCheck.md | 11 +---------- .../New-MgPlaceAsFloorCheck.md | 11 +---------- .../New-MgPlaceAsRoomCheck.md | 11 +---------- .../New-MgPlaceAsRoomListCheck.md | 11 +---------- .../New-MgPlaceAsRoomListRoom.md | 11 +---------- .../New-MgPlaceAsRoomListRoomCheck.md | 11 +---------- .../New-MgPlaceAsRoomListWorkspace.md | 11 +---------- .../New-MgPlaceAsRoomListWorkspaceCheck.md | 11 +---------- .../New-MgPlaceAsSectionCheck.md | 11 +---------- .../New-MgPlaceAsWorkspaceCheck.md | 11 +---------- .../New-MgUserDefaultCalendarEvent.md | 11 +---------- .../Remove-MgGroupCalendarEvent.md | 11 +---------- .../Remove-MgGroupEventPermanent.md | 11 +---------- .../Remove-MgPlaceAsBuildingCheck.md | 11 +---------- .../Remove-MgPlaceAsBuildingMapFootprint.md | 11 +---------- .../Remove-MgPlaceAsBuildingMapLevel.md | 11 +---------- .../Remove-MgPlaceAsBuildingMapLevelSection.md | 11 +---------- .../Remove-MgPlaceAsDeskCheck.md | 11 +---------- .../Remove-MgPlaceAsFloorCheck.md | 11 +---------- .../Remove-MgPlaceAsRoomCheck.md | 11 +---------- .../Remove-MgPlaceAsRoomListCheck.md | 11 +---------- .../Remove-MgPlaceAsRoomListRoom.md | 11 +---------- .../Remove-MgPlaceAsRoomListRoomCheck.md | 11 +---------- .../Remove-MgPlaceAsRoomListWorkspace.md | 11 +---------- .../Remove-MgPlaceAsRoomListWorkspaceCheck.md | 11 +---------- .../Remove-MgPlaceAsSectionCheck.md | 11 +---------- .../Remove-MgPlaceAsWorkspaceCheck.md | 11 +---------- .../Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md | 11 +---------- .../Remove-MgUserEventPermanent.md | 11 +---------- .../Update-MgPlaceAsBuildingCheck.md | 11 +---------- .../Update-MgPlaceAsBuildingMap.md | 11 +---------- .../Update-MgPlaceAsBuildingMapFootprint.md | 11 +---------- .../Update-MgPlaceAsBuildingMapLevel.md | 11 +---------- .../Update-MgPlaceAsBuildingMapLevelSection.md | 11 +---------- .../Update-MgPlaceAsDeskCheck.md | 11 +---------- .../Update-MgPlaceAsFloorCheck.md | 11 +---------- .../Update-MgPlaceAsRoomCheck.md | 11 +---------- .../Update-MgPlaceAsRoomListCheck.md | 11 +---------- .../Update-MgPlaceAsRoomListRoom.md | 11 +---------- .../Update-MgPlaceAsRoomListRoomCheck.md | 11 +---------- .../Update-MgPlaceAsRoomListWorkspace.md | 11 +---------- .../Update-MgPlaceAsRoomListWorkspaceCheck.md | 11 +---------- .../Update-MgPlaceAsSectionCheck.md | 11 +---------- .../Update-MgPlaceAsWorkspaceCheck.md | 11 +---------- .../Microsoft.Graph.Calendar/Update-MgPlaceCheck.md | 11 +---------- 103 files changed, 103 insertions(+), 1030 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 8678d78dc03d4..5c3f3f82da172 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -70,16 +70,6 @@ Read-only. | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, | | Application | Calendars.ReadBasic, Calendars.Read, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -611,5 +601,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md index b4ee945b31a41..b9a278cb79b1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index 2550ce37758e4..a93b248243ac5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Calendars.Read, | | Application | Calendars.Read, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -416,5 +406,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index 0344bf107e792..a3d00e2e5d68a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md index fb40248cebb70..5b283a695f129 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md index e118e4b070c60..2b0f343d7dcf5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md index 3c5bce288c2a1..530f944610e26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md index 0cda93d67b010..2ef2205727229 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md index 12d618f3af69b..bc2ba3dda3c9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md index ad7bd84cc8238..e96c154be2ac7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md index d3e882b6646e9..0ea1d362d4496 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md index e279339b63a9c..aa32d9337a74f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md index 4d5eed5eae151..1ea9fc0d71477 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md index 247061b101fc9..5a8643693c380 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md index 2145ffc7ea8b5..2e7b4a9c76757 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md index 97e77503f0d1f..8ea200c3e9fe4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md index f960cec7d1e91..6bc5bce6cecb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md index c0f5ce22e61d7..c05e790e2eee6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md index f7a1d637f9852..e7324ed0870d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md index 4f999f154c6a7..4d1776324ff31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md index b67dddce1dda7..6d4bd114caed9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md @@ -58,16 +58,6 @@ This cmdlet has the following aliases, Get rooms from places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -599,5 +589,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md index 752a885a5ee6c..981f9de040013 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -627,5 +617,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md index cc31137b5f3b5..c7f6046e02f7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md index 9bcc16673d324..7b9d0c83dce05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md index b4b9cb76b3d39..2a317c6b44c89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md @@ -58,16 +58,6 @@ This cmdlet has the following aliases, Get workspaces from places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -599,5 +589,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md index 54e1aafba6b0e..bdb28df8d916e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -627,5 +617,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md index 02a5b3e08ca11..b43bca43a2e5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.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 @@ -409,5 +399,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md index 24229ef7cff7d..92e592b00d2de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md index 07fb4abeca68c..42496a902a07c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md index acf55dc92be72..78f8c75b33848 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md index 4c9e1946329f9..f44a906e3730d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, A subresource of a place object that indicates the check-in status of an Outlook calendar event booked at the place. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -600,5 +590,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md index 56d113e097101..f2bcaaa245611 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md index 87231724be387..8fde543aff0e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.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 @@ -387,5 +377,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md index 941b377353bbc..fe07ef5ab706b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.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.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index 45d75da52dd5d..c714c74e1e1c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index 397b9a4ef2def..7f8c783f911d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index dbe31956a9108..2eb082afeae2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index b3c18747887a5..388eb213e5b4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index 4ba168ea2ee80..f1249a864b13c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index 1f73fdea7e6c0..f67e30e871761 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index cd26cc9dc01c6..dcd8ee3e44d3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.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.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index 174d8b8a08b5c..4a7d8fb941955 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.Read.Shared, Calendars.ReadWrite, | | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index 3f56100e8cad2..ad0e1b840d165 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md index e570ed820c7a4..de21711210938 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md @@ -65,16 +65,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 @@ -438,5 +428,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index 568428436ee1e..8504193f6b48c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -52,16 +52,6 @@ Read-only. | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -514,5 +504,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index 485c067aceed5..f737047988250 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Calendars.Read, | | Application | Calendars.Read, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -416,5 +406,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index dc299190c8796..559f4ce06c028 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | | Application | Calendars.ReadBasic, Calendars.Read, Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -395,5 +385,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md index 832ea12f8e06d..64538cb8a9ed0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.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 @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md index fdbd18620e7fd..835a1e9142027 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Invoke function allowedCalendarSharingRoles -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -474,5 +464,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md index 032adc239c73d..a4b65a0471df3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Invoke function allowedCalendarSharingRoles -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -533,5 +523,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index b4838b06e1f52..5b6bd59cc4a0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -57,16 +57,6 @@ Invoke function descendants | Delegated (personal Microsoft account) | Not supported | | Application | Place.Read.All, Place.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -527,5 +517,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md index 96aeb7cb7e62d..7e4b94ef45acb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md @@ -103,16 +103,6 @@ This cmdlet has the following aliases, Create new navigation property to events for groups -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -3119,5 +3109,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md index d1ebe9565783a..ecc927ffb17d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md index 4ba19867cd157..4a1af87362b1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Create new navigation property to footprints for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -534,5 +524,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md index da331fece68ff..874e34c97cc4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md @@ -71,16 +71,6 @@ This cmdlet has the following aliases, Create new navigation property to levels for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -699,5 +689,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md index 8eabe88a5aca3..37da033f60930 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to fixtures for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -598,5 +588,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md index 1c6ce2d717f82..5914d4f4d1254 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to sections for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -598,5 +588,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md index 2ba5f772cd173..c871d1ee350b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to units for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -598,5 +588,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md index 615eaeaf09a32..7a2695f253618 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -573,5 +563,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md index 588fcec790169..39b228dbe2922 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md index 25194973b66df..001f793fbec20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -573,5 +563,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md index 30004b5c9aa7a..8c90f18b67847 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md index 371d3399c1ae7..95e2161764d4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Create new navigation property to rooms for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1164,5 +1154,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md index 7420a2218be31..7eb3f0868bab0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md index dcd172188185c..110df44998a68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Create new navigation property to workspaces for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -996,5 +986,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md index 6a97340818baa..47e2a35ed3fb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md index 7da36698755d1..abaf0a38cecb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md index 922eb99c64496..549ec9d38465c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Create new navigation property to checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -574,5 +564,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index 42c56ebc2a351..c4e194a91c495 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -112,16 +112,6 @@ Create new navigation property to events for users | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -3128,5 +3118,6 @@ See below for more possible values. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index 58688a8b0c002..52d12c1633910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md @@ -55,16 +55,6 @@ Delete navigation property events for groups | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -460,5 +450,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md index ff8ebceb2689a..d365a8ba84baf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Invoke action permanentDelete -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -431,5 +421,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md index cd6d971280725..48cbd2ab6acd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md index 72bdbd8ee5ef0..cbfddcc64785a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property footprints for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md index fd4770f2fd0dd..81484e440757f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property levels for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md index 5dd3dc2aafc04..6dc291852648d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property sections for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -474,5 +464,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md index 9aee4993e3c59..c62873aa1167f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md index 591e179286c76..dbc19448a696a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md index 6572f32793bcc..32b68d510c180 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md index 862033be55fe1..da3b35de547b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md index d73391fc512f6..00c92e5c162e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property rooms for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md index 8ed3d6e2b16ab..2310c45209293 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -474,5 +464,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md index ee9a02a781824..cde59c6a28af3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property workspaces for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md index fb345c62cd061..2d83256176509 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -474,5 +464,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md index b0603d58115ee..16c0b0c89154b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md index 086cd432f1661..6c23bd0041503 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md index 5e43c1c9349c9..e5736d16e7e5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property checkIns for places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -452,5 +442,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index a333227d263ce..29df85a52792e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md @@ -55,16 +55,6 @@ Invoke action permanentDelete | Delegated (personal Microsoft account) | Calendars.ReadWrite, | | Application | Calendars.ReadWrite, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -439,5 +429,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md index 7c116f9ac48d3..6f405eed13ffd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md index ad0fd9437780f..603e5ee34cf69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Update the navigation property map in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -690,5 +680,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md index fe81e9d08c600..94e3f9ab830aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md @@ -67,16 +67,6 @@ This cmdlet has the following aliases, Update the navigation property footprints in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -561,5 +551,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md index f12ec55f6edaf..92a11f1fff9a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property levels in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -728,5 +718,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md index 412f37c21e580..bb86e18980521 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property sections in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -625,5 +615,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md index f1736efa72aab..dab186b587c1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md index 08f259a3603e1..59a625616449f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md index 2527d6533eecc..3fc675274448b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md index 11026df158476..118e6b52212e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md index 1e078341d33d8..1a076ae539ce1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property rooms in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1191,5 +1181,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md index 6379eba454781..84123ed642beb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -630,5 +620,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md index 61217485f0555..eef8a6cc1cabc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Update the navigation property workspaces in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1025,5 +1015,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md index e6cbd5801e3d4..a945d59dd1fb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -630,5 +620,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md index 84dcf50d7308f..2f528c5dcae41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md index dc1180ffff1b5..ee110715f9133 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -602,5 +592,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md index 60624a8ddcb43..fc773acb47ac1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md @@ -68,16 +68,6 @@ This cmdlet has the following aliases, Update the navigation property checkIns in places -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -601,5 +591,6 @@ INPUTOBJECT ``: Identity Parameter + From 290ce941fd5fceb9f9f708dd25e5383414031764 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:46 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- .../Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md | 6 +++--- .../Invoke-MgAcceptGroupEventTentatively.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md | 6 +++--- .../Invoke-MgAcceptUserEventTentatively.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md | 6 +++--- .../Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md | 6 +++--- .../Invoke-MgSnoozeGroupEventReminder.md | 2 +- .../Invoke-MgSnoozeUserEventReminder.md | 2 +- .../New-MgGroupEventAttachmentUploadSession.md | 2 +- .../New-MgUserEventAttachmentUploadSession.md | 2 +- .../Microsoft.Graph.Calendar/Stop-MgGroupEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Stop-MgUserEvent.md | 4 ++-- 15 files changed, 35 insertions(+), 35 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index eb1c048f9d4f1..24aba5f591c59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md @@ -102,7 +102,7 @@ HelpMessage: '' ### -AvailabilityViewInterval -. + ```yaml Type: System.Int32 @@ -129,7 +129,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -431,7 +431,7 @@ HelpMessage: '' ### -Schedules -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index 0ffad0a7a1da9..e3ec2b152a6ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -149,7 +149,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -449,7 +449,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index 75d64c320f6be..9e95e22278a5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -104,7 +104,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -153,7 +153,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -481,7 +481,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index ff602215f4212..905c4b5c3d50d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -127,7 +127,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -176,7 +176,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -449,7 +449,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index ae1030c35da27..a4cee90462135 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -141,7 +141,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -190,7 +190,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -491,7 +491,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index 8c53057910037..6a111c0aab9a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -104,7 +104,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -153,7 +153,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -481,7 +481,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index ab7f61ff502b3..b62ca5a941504 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -141,7 +141,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -190,7 +190,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -491,7 +491,7 @@ HelpMessage: '' ### -SendResponse -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index 08a57f64b56f4..2223c45a2f40f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -112,7 +112,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -161,7 +161,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -461,7 +461,7 @@ HelpMessage: '' ### -ToRecipients -. + To construct, see NOTES section for TORECIPIENTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 8ffe6c3334662..9bef31a902006 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -138,7 +138,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -187,7 +187,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String @@ -460,7 +460,7 @@ HelpMessage: '' ### -ToRecipients -. + To construct, see NOTES section for TORECIPIENTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index e6c51d9a923bd..e22d2a4c1e84b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index cde09b90435aa..184968af3a771 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -129,7 +129,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index daf93b9bfda9c..f06915e0bbef8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -142,7 +142,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index 79769993f841a..4d499dd61d4d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -150,7 +150,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index f213d1a0a27ac..549102ce34d54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -114,7 +114,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -163,7 +163,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index 03fd04d3b8eb3..780bd69158f32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -132,7 +132,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -181,7 +181,7 @@ HelpMessage: '' ### -Comment -. + ```yaml Type: System.String From b9509088a97a8830c34c131d55403bedc04c8d4f Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:52:00 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Microsoft.Graph.Calendar/Get-MgGroupCalendar.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md | 2 +- .../Get-MgGroupCalendarPermission.md | 2 +- .../Get-MgGroupCalendarPermissionCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupEvent.md | 6 +++--- .../Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md | 2 +- .../Get-MgGroupEventAttachmentCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupEventCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md | 4 ++-- .../Get-MgGroupEventExtensionCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md | 2 +- .../Get-MgGroupEventInstanceDelta.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md | 2 +- .../Get-MgPlaceAsBuildingCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md | 4 ++-- .../Get-MgPlaceAsBuildingMapFootprint.md | 4 ++-- .../Get-MgPlaceAsBuildingMapFootprintCount.md | 2 +- .../Get-MgPlaceAsBuildingMapLevel.md | 4 ++-- .../Get-MgPlaceAsBuildingMapLevelCount.md | 2 +- .../Get-MgPlaceAsBuildingMapLevelFixture.md | 4 ++-- .../Get-MgPlaceAsBuildingMapLevelFixtureCount.md | 2 +- .../Get-MgPlaceAsBuildingMapLevelSection.md | 4 ++-- .../Get-MgPlaceAsBuildingMapLevelSectionCount.md | 2 +- .../Get-MgPlaceAsBuildingMapLevelUnit.md | 4 ++-- .../Get-MgPlaceAsBuildingMapLevelUnitCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md | 2 +- .../Get-MgPlaceAsDeskCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md | 2 +- .../Get-MgPlaceAsFloorCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md | 2 +- .../Get-MgPlaceAsRoomCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md | 2 +- .../Get-MgPlaceAsRoomListCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md | 2 +- .../Get-MgPlaceAsRoomListRoomCheck.md | 2 +- .../Get-MgPlaceAsRoomListRoomCheckInCount.md | 2 +- .../Get-MgPlaceAsRoomListRoomCount.md | 2 +- .../Get-MgPlaceAsRoomListWorkspace.md | 2 +- .../Get-MgPlaceAsRoomListWorkspaceCheck.md | 2 +- .../Get-MgPlaceAsRoomListWorkspaceCheckInCount.md | 2 +- .../Get-MgPlaceAsRoomListWorkspaceCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md | 2 +- .../Get-MgPlaceAsSectionCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md | 2 +- .../Get-MgPlaceAsWorkspaceCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCheck.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserCalendar.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md | 2 +- .../Get-MgUserCalendarGroupCalendar.md | 2 +- .../Get-MgUserCalendarGroupCount.md | 2 +- .../Get-MgUserCalendarPermission.md | 6 +++--- .../Get-MgUserCalendarPermissionCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserCalendarView.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md | 2 +- .../Get-MgUserDefaultCalendarEvent.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEvent.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md | 2 +- .../Get-MgUserEventAttachmentCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEventCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEventDelta.md | 4 ++-- .../Microsoft.Graph.Calendar/Get-MgUserEventExtension.md | 2 +- .../Get-MgUserEventExtensionCount.md | 2 +- .../Microsoft.Graph.Calendar/Get-MgUserEventInstance.md | 2 +- .../Get-MgUserEventInstanceDelta.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md | 4 ++-- .../Invoke-MgAcceptGroupEventTentatively.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md | 4 ++-- .../Invoke-MgAcceptUserEventTentatively.md | 4 ++-- .../Invoke-MgCalendarGroupCalendar.md | 2 +- ...oke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md | 2 +- .../Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md | 2 +- .../Invoke-MgDismissGroupEventReminder.md | 4 ++-- .../Invoke-MgDismissUserEventReminder.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md | 4 ++-- .../Invoke-MgSnoozeGroupEventReminder.md | 4 ++-- .../Invoke-MgSnoozeUserEventReminder.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md | 2 +- .../New-MgGroupCalendarPermission.md | 2 +- .../Microsoft.Graph.Calendar/New-MgGroupEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md | 2 +- .../New-MgGroupEventAttachmentUploadSession.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgGroupEventExtension.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgPlace.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md | 2 +- .../New-MgPlaceAsBuildingMapFootprint.md | 2 +- .../New-MgPlaceAsBuildingMapLevel.md | 2 +- .../New-MgPlaceAsBuildingMapLevelFixture.md | 2 +- .../New-MgPlaceAsBuildingMapLevelSection.md | 2 +- .../New-MgPlaceAsBuildingMapLevelUnit.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md | 2 +- .../New-MgPlaceAsRoomListRoomCheck.md | 2 +- .../New-MgPlaceAsRoomListWorkspace.md | 2 +- .../New-MgPlaceAsRoomListWorkspaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/New-MgPlaceCheck.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgUserCalendar.md | 2 +- .../Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md | 2 +- .../Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md | 2 +- .../New-MgUserCalendarGroupCalendar.md | 2 +- .../New-MgUserCalendarPermission.md | 2 +- .../New-MgUserDefaultCalendarEvent.md | 2 +- .../Microsoft.Graph.Calendar/New-MgUserEvent.md | 2 +- .../Microsoft.Graph.Calendar/New-MgUserEventAttachment.md | 2 +- .../New-MgUserEventAttachmentUploadSession.md | 4 ++-- .../Microsoft.Graph.Calendar/New-MgUserEventExtension.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md | 2 +- .../Remove-MgGroupCalendarPermanent.md | 2 +- .../Remove-MgGroupCalendarPermission.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgGroupEvent.md | 4 ++-- .../Remove-MgGroupEventAttachment.md | 2 +- .../Remove-MgGroupEventExtension.md | 2 +- .../Remove-MgGroupEventPermanent.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgPlace.md | 4 ++-- .../Remove-MgPlaceAsBuildingCheck.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md | 4 ++-- .../Remove-MgPlaceAsBuildingMapFootprint.md | 2 +- .../Remove-MgPlaceAsBuildingMapLevel.md | 2 +- .../Remove-MgPlaceAsBuildingMapLevelFixture.md | 4 ++-- .../Remove-MgPlaceAsBuildingMapLevelSection.md | 2 +- .../Remove-MgPlaceAsBuildingMapLevelUnit.md | 4 ++-- .../Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md | 2 +- .../Remove-MgPlaceAsRoomListCheck.md | 2 +- .../Remove-MgPlaceAsRoomListRoom.md | 2 +- .../Remove-MgPlaceAsRoomListRoomCheck.md | 2 +- .../Remove-MgPlaceAsRoomListWorkspace.md | 2 +- .../Remove-MgPlaceAsRoomListWorkspaceCheck.md | 2 +- .../Remove-MgPlaceAsSectionCheck.md | 2 +- .../Remove-MgPlaceAsWorkspaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md | 2 +- .../Remove-MgUserCalendarPermanent.md | 2 +- .../Remove-MgUserCalendarPermission.md | 4 ++-- .../Microsoft.Graph.Calendar/Remove-MgUserEvent.md | 2 +- .../Remove-MgUserEventAttachment.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md | 2 +- .../Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md | 2 +- .../Microsoft.Graph.Calendar/Stop-MgGroupEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Stop-MgUserEvent.md | 4 ++-- .../Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md | 4 ++-- .../Update-MgGroupCalendarPermission.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgGroupEvent.md | 2 +- .../Update-MgGroupEventExtension.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgPlace.md | 4 ++-- .../Update-MgPlaceAsBuildingCheck.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md | 2 +- .../Update-MgPlaceAsBuildingMapFootprint.md | 2 +- .../Update-MgPlaceAsBuildingMapLevel.md | 2 +- .../Update-MgPlaceAsBuildingMapLevelFixture.md | 4 ++-- .../Update-MgPlaceAsBuildingMapLevelSection.md | 2 +- .../Update-MgPlaceAsBuildingMapLevelUnit.md | 4 ++-- .../Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md | 2 +- .../Update-MgPlaceAsRoomListCheck.md | 2 +- .../Update-MgPlaceAsRoomListRoom.md | 2 +- .../Update-MgPlaceAsRoomListRoomCheck.md | 2 +- .../Update-MgPlaceAsRoomListWorkspace.md | 2 +- .../Update-MgPlaceAsRoomListWorkspaceCheck.md | 2 +- .../Update-MgPlaceAsSectionCheck.md | 2 +- .../Update-MgPlaceAsWorkspaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgPlaceCheck.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md | 2 +- .../Update-MgUserCalendarPermission.md | 4 ++-- .../Microsoft.Graph.Calendar/Update-MgUserEvent.md | 2 +- .../Microsoft.Graph.Calendar/Update-MgUserEventExtension.md | 2 +- 198 files changed, 253 insertions(+), 253 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md index 5e7edbd55f5cb..e54aad13cc029 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendar.md @@ -360,7 +360,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar) +- [Get-MgGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md index 5c3f3f82da172..c95200e96a0c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarEvent.md @@ -580,7 +580,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent) +- [Get-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md index fd4e350b3abcf..6b47043d95109 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermission.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission) +- [Get-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md index b9a278cb79b1c..53904f05157c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarPermissionCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount) +- [Get-MgGroupCalendarPermissionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarpermissioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md index 24aba5f591c59..cff149607ec71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarSchedule.md @@ -586,8 +586,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule) -- [](https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0) +- [Get-MgGroupCalendarSchedule](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarschedule) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md index 169560e897cd1..c0010b07eb155 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupCalendarView.md @@ -519,7 +519,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview) +- [Get-MgGroupCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupcalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md index 46bbeeac454f1..e64e38e98d66c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEvent.md @@ -589,9 +589,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent) -- [](https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0) +- [Get-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md index 5d17a45fb30f2..ffea35bac2991 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachment.md @@ -602,7 +602,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment) +- [Get-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md index a93b248243ac5..6803e5b5bee3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventAttachmentCount.md @@ -385,7 +385,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount) +- [Get-MgGroupEventAttachmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventattachmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md index a93a67fe3a41a..c5b144e05bce7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCalendar.md @@ -383,7 +383,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar) +- [Get-MgGroupEventCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md index a3d00e2e5d68a..51188b3f778b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventCount.md @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount) +- [Get-MgGroupEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md index 811036323845a..d630529171e6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventDelta.md @@ -613,8 +613,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta) -- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) +- [Get-MgGroupEventDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventdelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md index 988954d5154cf..b14b16bb20cf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtension.md @@ -617,8 +617,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension) -- [](https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0) +- [Get-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextension) +- [Graph API Reference](https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md index 5b283a695f129..25ec62f7ae70e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventExtensionCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount) +- [Get-MgGroupEventExtensionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventextensioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md index e0eaabf06d066..d2d267abd939d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstance.md @@ -553,7 +553,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance) +- [Get-MgGroupEventInstance](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md index ebe941f3b415c..193e7135b0c90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgGroupEventInstanceDelta.md @@ -627,8 +627,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta) -- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) +- [Get-MgGroupEventInstanceDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mggroupeventinstancedelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md index 8af0df2ab4bbc..182cd5a97ee2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuilding.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsBuilding](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuilding) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md index 2b0f343d7dcf5..315637121c2b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck) +- [Get-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md index 530f944610e26..18ed2d02a6954 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount) +- [Get-MgPlaceAsBuildingCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md index 7d9d6e95d4ba4..b459903ebfb64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMap.md @@ -371,8 +371,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap) -- [](https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmap) +- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md index 4ab71a5ec2359..3a930e87f2af0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprint.md @@ -584,8 +584,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint) -- [](https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprint) +- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-list-footprints?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md index 2ef2205727229..8849be1119c0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapFootprintCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount) +- [Get-MgPlaceAsBuildingMapFootprintCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmapfootprintcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md index 018d4c712b792..3afe69ac67630 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevel.md @@ -583,8 +583,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel) -- [](https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevel) +- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-list-levels?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md index bc2ba3dda3c9f..f1826980c02b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount) +- [Get-MgPlaceAsBuildingMapLevelCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md index 7d2f5b9f5ea11..b3f66c40633d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixture.md @@ -611,8 +611,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture) -- [](https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixture) +- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-fixtures?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md index e96c154be2ac7..2fe8b32e69d5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelFixtureCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount) +- [Get-MgPlaceAsBuildingMapLevelFixtureCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelfixturecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md index 347809de7eb57..9027736ef6367 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSection.md @@ -611,8 +611,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection) -- [](https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-sections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md index 0ea1d362d4496..2b89a893e7f0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelSectionCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount) +- [Get-MgPlaceAsBuildingMapLevelSectionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelsectioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md index 802404aaadcc4..c7a1cf789ed2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnit.md @@ -611,8 +611,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit) -- [](https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0) +- [Get-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/levelmap-list-units?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md index aa32d9337a74f..1b4967b6127c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsBuildingMapLevelUnitCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount) +- [Get-MgPlaceAsBuildingMapLevelUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasbuildingmaplevelunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md index 4d4edc5c6f886..bbe9dc468adc3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDesk.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsDesk](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdesk) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md index 1ea9fc0d71477..8430104b9d72a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck) +- [Get-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md index 5a8643693c380..c5be2b4e847cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsDeskCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount) +- [Get-MgPlaceAsDeskCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasdeskcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md index d2a02da310ff2..40355c711cabf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloor.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsFloor](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloor) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md index 2e7b4a9c76757..0b1198dbc0764 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck) +- [Get-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md index 8ea200c3e9fe4..940f82a402d6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsFloorCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount) +- [Get-MgPlaceAsFloorCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasfloorcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md index 8deeaa424e78b..34b60cc403648 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoom.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroom) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md index 6bc5bce6cecb1..d27ed9a4ed638 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck) +- [Get-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md index c05e790e2eee6..1aef230ab577f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount) +- [Get-MgPlaceAsRoomCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md index 1951f4252cab3..33440239884de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomList.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist) -- [](https://learn.microsoft.com/graph/api/place-get?view=graph-rest-1.0) +- [Get-MgPlaceAsRoomList](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlist) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md index e7324ed0870d1..6b6accc7d919f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck) +- [Get-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md index 4d1776324ff31..8c0f373a13aab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount) +- [Get-MgPlaceAsRoomListCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md index 6d4bd114caed9..458f6308da5db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoom.md @@ -568,7 +568,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom) +- [Get-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md index 981f9de040013..c8816880b7957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheck.md @@ -596,7 +596,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck) +- [Get-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md index c7f6046e02f7c..e19936b603ed7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCheckInCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount) +- [Get-MgPlaceAsRoomListRoomCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md index 7b9d0c83dce05..05e7ecb0b530e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListRoomCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount) +- [Get-MgPlaceAsRoomListRoomCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistroomcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md index 2a317c6b44c89..8f844abee1ed4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspace.md @@ -568,7 +568,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace) +- [Get-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md index bdb28df8d916e..c6979c54a3f12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheck.md @@ -596,7 +596,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck) +- [Get-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md index b43bca43a2e5f..949887d01ef11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCheckInCount.md @@ -378,7 +378,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount) +- [Get-MgPlaceAsRoomListWorkspaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md index 92e592b00d2de..ed5adbca60b36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsRoomListWorkspaceCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount) +- [Get-MgPlaceAsRoomListWorkspaceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasroomlistworkspacecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md index 4b538bb0602cf..984ec1f36c503 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSection.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md index 42496a902a07c..f72fafa5c2aee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck) +- [Get-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md index 78f8c75b33848..aff0d281f6048 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsSectionCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount) +- [Get-MgPlaceAsSectionCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceassectioncheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md index e5dd6b7b8095b..78cf892618e68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspace.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace) -- [](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) +- [Get-MgPlaceAsWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspace) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md index f44a906e3730d..00ea131c38b07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheck.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck) +- [Get-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md index f2bcaaa245611..7b09ba1fadccc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceAsWorkspaceCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount) +- [Get-MgPlaceAsWorkspaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplaceasworkspacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md index a9a8823bf6ee9..728607aeaacb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheck.md @@ -584,8 +584,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck) -- [](https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0) +- [Get-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheck) +- [Graph API Reference](https://learn.microsoft.com/graph/api/checkinclaim-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md index 8fde543aff0e5..127e739767570 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCheckInCount.md @@ -356,7 +356,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount) +- [Get-MgPlaceCheckInCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecheckincount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md index fe07ef5ab706b..5ec83b4799449 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount) +- [Get-MgPlaceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md index c714c74e1e1c2..eaae41156aea4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsBuilding.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding) +- [Get-MgPlaceCountAsBuilding](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasbuilding) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md index 7f8c783f911d1..08adebbb6b1ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsDesk.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk) +- [Get-MgPlaceCountAsDesk](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasdesk) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md index 2eb082afeae2e..d4448662e32f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsFloor.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor) +- [Get-MgPlaceCountAsFloor](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasfloor) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md index 388eb213e5b4e..4dd90349131e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoom.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom) +- [Get-MgPlaceCountAsRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md index f1249a864b13c..70fdb89714417 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsRoomList.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist) +- [Get-MgPlaceCountAsRoomList](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasroomlist) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md index f67e30e871761..dc3f7b9c06e63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsSection.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection) +- [Get-MgPlaceCountAsSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountassection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md index dcd8ee3e44d3c..d182670d7accf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgPlaceCountAsWorkspace.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace) +- [Get-MgPlaceCountAsWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgplacecountasworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md index 5769080908efd..b3435751abf5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendar.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar) +- [Get-MgUserCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md index 4a7d8fb941955..71a17e0f2fd5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarCount.md @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount) +- [Get-MgUserCalendarCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md index 365d8278a954c..24f604f6d756e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarEvent.md @@ -504,7 +504,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent) +- [Get-MgUserCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md index 6b445a2af5dd3..1dac8fcfade50 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroup.md @@ -594,7 +594,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup) +- [Get-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md index 226fb404dc856..d692aa8f04bcf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCalendar.md @@ -516,7 +516,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar) +- [Get-MgUserCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md index ad0e1b840d165..2913199233b1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarGroupCount.md @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount) +- [Get-MgUserCalendarGroupCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendargroupcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md index 16ad89123cae1..56eac3b643c0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermission.md @@ -711,9 +711,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission) -- [](https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/calendar-list-calendarpermissions?view=graph-rest-1.0) +- [Get-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermission) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calendar-list-calendarpermissions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md index de21711210938..119f8d8f1360e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarPermissionCount.md @@ -407,7 +407,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount) +- [Get-MgUserCalendarPermissionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarpermissioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md index 63ded7285a7d4..3ded55898119d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md @@ -570,7 +570,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview) +- [Get-MgUserCalendarView](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusercalendarview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md index 83f17a8093e9d..ff54f25c4eccc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendar.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar) +- [Get-MgUserDefaultCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md index 8504193f6b48c..a8f5657dcaa01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserDefaultCalendarEvent.md @@ -483,7 +483,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent) +- [Get-MgUserDefaultCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserdefaultcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md index a4ee2d95ffb22..50426056cc5c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEvent.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent) +- [Get-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md index dd8f5e95f64c0..544c609a6b71f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachment.md @@ -616,7 +616,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment) +- [Get-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md index f737047988250..44e4491f39352 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventAttachmentCount.md @@ -385,7 +385,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount) +- [Get-MgUserEventAttachmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventattachmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md index aa78fa9ed3650..0a302cdb9db2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCalendar.md @@ -383,7 +383,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar) +- [Get-MgUserEventCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md index 559f4ce06c028..2f137b2b5d459 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventCount.md @@ -364,7 +364,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount) +- [Get-MgUserEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md index 8d76f9c911050..7ebf2660b0420 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventDelta.md @@ -613,8 +613,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta) -- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) +- [Get-MgUserEventDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventdelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md index b09124c169756..6ca74126d1301 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtension.md @@ -602,7 +602,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension) +- [Get-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md index 64538cb8a9ed0..561c6aebbeea4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventExtensionCount.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount) +- [Get-MgUserEventExtensionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventextensioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md index 5369e4ca95442..52b8cd20cc0ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstance.md @@ -567,7 +567,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance) +- [Get-MgUserEventInstance](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md index 1f91653f50215..661b2d9749fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserEventInstanceDelta.md @@ -627,8 +627,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta) -- [](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) +- [Get-MgUserEventInstanceDelta](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/get-mgusereventinstancedelta) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md index e3ec2b152a6ba..80876ddcd206e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEvent.md @@ -558,8 +558,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent) -- [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) +- [Invoke-MgAcceptGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md index 9e95e22278a5a..0b14f4519c50d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptGroupEventTentatively.md @@ -607,8 +607,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively) -- [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) +- [Invoke-MgAcceptGroupEventTentatively](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptgroupeventtentatively) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md index 905c4b5c3d50d..d8bf07317167b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEvent.md @@ -585,8 +585,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent) -- [](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) +- [Invoke-MgAcceptUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptuserevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md index a4cee90462135..1e1285995379e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgAcceptUserEventTentatively.md @@ -644,8 +644,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively) -- [](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) +- [Invoke-MgAcceptUserEventTentatively](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgacceptusereventtentatively) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md index 835a1e9142027..ed6091c58c542 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarGroupCalendar.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar) +- [Invoke-MgCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md index a4b65a0471df3..3807206916c65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles.md @@ -502,7 +502,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles) +- [Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgcalendarusercalendarallowedcalendarsharingroles) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md index 6a111c0aab9a0..9b9fcdbba808a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineGroupEvent.md @@ -607,8 +607,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent) -- [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) +- [Invoke-MgDeclineGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclinegroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md index b62ca5a941504..59c8fcec567c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDeclineUserEvent.md @@ -644,8 +644,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent) -- [](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) +- [Invoke-MgDeclineUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdeclineuserevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md index 5b6bd59cc4a0e..2756ff2d9a736 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDescendantPlace.md @@ -496,7 +496,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace) +- [Invoke-MgDescendantPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdescendantplace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md index bb0e3b6f3983a..fc9d9454562b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissGroupEventReminder.md @@ -400,8 +400,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder) -- [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) +- [Invoke-MgDismissGroupEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissgroupeventreminder) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md index cfb83e46d50ef..d3064229a3757 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgDismissUserEventReminder.md @@ -422,8 +422,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder) -- [](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) +- [Invoke-MgDismissUserEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgdismissusereventreminder) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md index 2223c45a2f40f..d8ca9ffe04b23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardGroupEvent.md @@ -581,8 +581,8 @@ TORECIPIENTS : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent) -- [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) +- [Invoke-MgForwardGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwardgroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md index 9bef31a902006..a8a41788b107c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgForwardUserEvent.md @@ -607,8 +607,8 @@ TORECIPIENTS : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent) -- [](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) +- [Invoke-MgForwardUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgforwarduserevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md index e22d2a4c1e84b..4ae7852d400bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeGroupEventReminder.md @@ -541,8 +541,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder) -- [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) +- [Invoke-MgSnoozeGroupEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozegroupeventreminder) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md index 184968af3a771..3241258e5c679 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Invoke-MgSnoozeUserEventReminder.md @@ -570,8 +570,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder) -- [](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) +- [Invoke-MgSnoozeUserEventReminder](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/invoke-mgsnoozeusereventreminder) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md index 7e4b94ef45acb..761452f9fdb88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarEvent.md @@ -3088,7 +3088,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent) +- [New-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md index 1592f111048ce..bb07d54ec37fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupCalendarPermission.md @@ -640,7 +640,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission) +- [New-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md index 684eab1e71ba0..3f6d94b0c03e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEvent.md @@ -3129,8 +3129,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent) -- [](https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0) +- [New-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md index a5555aebb7c2a..556fb960a632f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachment.md @@ -661,7 +661,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment) +- [New-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md index f06915e0bbef8..607bf22fac2b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventAttachmentUploadSession.md @@ -552,8 +552,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession) -- [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) +- [New-MgGroupEventAttachmentUploadSession](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventattachmentuploadsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md index 43d61adf740d8..bf4d24246b0d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgGroupEventExtension.md @@ -526,8 +526,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension) -- [](https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0) +- [New-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mggroupeventextension) +- [Graph API Reference](https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md index 09c5fc33da6d9..f70416806ac6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlace.md @@ -732,8 +732,8 @@ As an example, the accuracy can be measured in meters, such as the latitude and ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace) -- [](https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0) +- [New-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplace) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-post?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md index ecc927ffb17d4..1731c5967bcf2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingCheck.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck) +- [New-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md index 4a1af87362b1a..a731e54207f79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapFootprint.md @@ -503,7 +503,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint) +- [New-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md index 874e34c97cc4e..b87b13baf4951 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevel.md @@ -668,7 +668,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel) +- [New-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md index 37da033f60930..08a62a35c1f75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelFixture.md @@ -567,7 +567,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture) +- [New-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelfixture) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md index 5914d4f4d1254..1d953c79e883d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelSection.md @@ -567,7 +567,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection) +- [New-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md index c871d1ee350b8..1889df83afe87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsBuildingMapLevelUnit.md @@ -567,7 +567,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit) +- [New-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasbuildingmaplevelunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md index 7a2695f253618..caeeeb5853afb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsDeskCheck.md @@ -542,7 +542,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck) +- [New-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md index 39b228dbe2922..527805b6ada9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsFloorCheck.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck) +- [New-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md index 001f793fbec20..cba998b3f7a8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomCheck.md @@ -542,7 +542,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck) +- [New-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md index 8c90f18b67847..415e81765b85c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListCheck.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck) +- [New-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md index 95e2161764d4e..64b4e4d78c014 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoom.md @@ -1133,7 +1133,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom) +- [New-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md index 7eb3f0868bab0..061ed03ea0f40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListRoomCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck) +- [New-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md index 110df44998a68..ef9c50a8ce8b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspace.md @@ -965,7 +965,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace) +- [New-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md index 47e2a35ed3fb7..0f6dc080cf01d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsRoomListWorkspaceCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck) +- [New-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md index abaf0a38cecb6..86059aa84d893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsSectionCheck.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck) +- [New-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md index 549ec9d38465c..725f5f3235325 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceAsWorkspaceCheck.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck) +- [New-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md index e93ded2166d77..84cec2dd90f43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgPlaceCheck.md @@ -563,8 +563,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck) -- [](https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0) +- [New-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgplacecheck) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-post-checkins?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md index d045c3da5c01f..50b3a75dbf8f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md @@ -1835,7 +1835,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar) +- [New-MgUserCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md index c0c67cc26dd83..a3ffa6472b0e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarEvent.md @@ -3208,7 +3208,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent) +- [New-MgUserCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md index 081d9edf40f6a..ce54bb72e6870 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md @@ -1147,7 +1147,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup) +- [New-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md index 8fcd9765b839a..9f26172365ead 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroupCalendar.md @@ -1865,7 +1865,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar) +- [New-MgUserCalendarGroupCalendar](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendargroupcalendar) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md index 16c8fd851823a..a1c2f05a38799 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarPermission.md @@ -829,7 +829,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission) +- [New-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusercalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md index c4e194a91c495..ece56ab01be81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserDefaultCalendarEvent.md @@ -3097,7 +3097,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent) +- [New-MgUserDefaultCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserdefaultcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md index eb033d0020e23..70c30bb65deb8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEvent.md @@ -3238,7 +3238,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent) +- [New-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md index b33e7c78d8aae..0187ad5384787 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachment.md @@ -702,7 +702,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment) +- [New-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md index 4d499dd61d4d1..7484ce6282454 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventAttachmentUploadSession.md @@ -560,8 +560,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession) -- [](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) +- [New-MgUserEventAttachmentUploadSession](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventattachmentuploadsession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md index a27cb52a60af4..7f5ea291e595c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserEventExtension.md @@ -501,7 +501,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension) +- [New-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/new-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md index 52d12c1633910..8e462402caab0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarEvent.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent) +- [Remove-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md index 466a001b401e2..44bd782dc0b2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermanent.md @@ -379,7 +379,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent) +- [Remove-MgGroupCalendarPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md index 7a9e53e7721f5..dd9f5d52f3dee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupCalendarPermission.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission) +- [Remove-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md index 12298fab55f73..d15603a0b8d47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEvent.md @@ -442,8 +442,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent) -- [](https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0) +- [Remove-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md index f3d68df5dfe50..66fb0098393ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventAttachment.md @@ -442,7 +442,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment) +- [Remove-MgGroupEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md index 131667ccd9d73..70d901353a1d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventExtension.md @@ -442,7 +442,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension) +- [Remove-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md index d365a8ba84baf..9815d10500fca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgGroupEventPermanent.md @@ -400,7 +400,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent) +- [Remove-MgGroupEventPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mggroupeventpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md index 48b02b1e1a71d..617922cdc9b2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlace.md @@ -423,8 +423,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace) -- [](https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0) +- [Remove-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplace) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md index 48cbd2ab6acd7..7e0792f3559f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck) +- [Remove-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md index 524fcdaf36b28..fcba44f85f144 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMap.md @@ -413,8 +413,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap) -- [](https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0) +- [Remove-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmap) +- [Graph API Reference](https://learn.microsoft.com/graph/api/buildingmap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md index cbfddcc64785a..71349f5e91499 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapFootprint.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint) +- [Remove-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md index 81484e440757f..e089b379776ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevel.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel) +- [Remove-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md index 12010e239cf8a..d686f3fe35e76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelFixture.md @@ -456,8 +456,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture) -- [](https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0) +- [Remove-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelfixture) +- [Graph API Reference](https://learn.microsoft.com/graph/api/fixturemap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md index 6dc291852648d..75d25ba98ccba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelSection.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection) +- [Remove-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md index 9933d576e6033..5723d20991f9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsBuildingMapLevelUnit.md @@ -455,8 +455,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit) -- [](https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0) +- [Remove-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasbuildingmaplevelunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/unitmap-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md index c62873aa1167f..8e602c0987264 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsDeskCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck) +- [Remove-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md index dbc19448a696a..2f6a89d380c42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsFloorCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck) +- [Remove-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md index 32b68d510c180..e2a2d7495f80f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck) +- [Remove-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md index da3b35de547b6..7b668bd775b4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck) +- [Remove-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md index 00c92e5c162e3..84beee8d1e5e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoom.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom) +- [Remove-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md index 2310c45209293..1c2eda3507c1b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListRoomCheck.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck) +- [Remove-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md index cde59c6a28af3..d781dd5f7108a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspace.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace) +- [Remove-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md index 2d83256176509..58e4fe09a97ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsRoomListWorkspaceCheck.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck) +- [Remove-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md index 16c0b0c89154b..26dc8ee835adf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsSectionCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck) +- [Remove-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md index 6c23bd0041503..1885136d79a42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceAsWorkspaceCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck) +- [Remove-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md index e5736d16e7e5b..090dfa098520f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgPlaceCheck.md @@ -421,7 +421,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck) +- [Remove-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgplacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md index 21bf0c8a172af..4f3b79a0ebe41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarGroup.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup) +- [Remove-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md index 94f2590d6bf0d..6d7c875fe2534 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermanent.md @@ -451,7 +451,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent) +- [Remove-MgUserCalendarPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md index 8920d998c83bb..02621110d0560 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserCalendarPermission.md @@ -499,8 +499,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission) -- [](https://learn.microsoft.com/graph/api/calendarpermission-delete?view=graph-rest-1.0) +- [Remove-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusercalendarpermission) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md index ce0c31d3f0cef..e2c93705b10ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md @@ -443,7 +443,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent) +- [Remove-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md index 5775d6623a746..b4148c24c88b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventAttachment.md @@ -456,7 +456,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment) +- [Remove-MgUserEventAttachment](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventattachment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md index 623929d288a2d..0291051badf1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventExtension.md @@ -442,7 +442,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension) +- [Remove-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md index 29df85a52792e..2c6323ce3ebae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEventPermanent.md @@ -408,7 +408,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent) +- [Remove-MgUserEventPermanent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/remove-mgusereventpermanent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md index 549102ce34d54..e203e1edb52e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgGroupEvent.md @@ -544,8 +544,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent) -- [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) +- [Stop-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mggroupevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md index 780bd69158f32..decd3533f8595 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Stop-MgUserEvent.md @@ -562,8 +562,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent) -- [](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) +- [Stop-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/stop-mguserevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md index 1aa4583f3604b..6b1e2589685a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarEvent.md @@ -3143,8 +3143,8 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent) -- [](https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0) +- [Update-MgGroupCalendarEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md index bce7a47bf08e2..36a58ad6f6acd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupCalendarPermission.md @@ -668,7 +668,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission) +- [Update-MgGroupCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupcalendarpermission) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md index c356ac52e25f5..f0c87d38aa1ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEvent.md @@ -3123,7 +3123,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent) +- [Update-MgGroupEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md index b6d8fbdedce6b..87beaff14ee1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgGroupEventExtension.md @@ -529,7 +529,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension) +- [Update-MgGroupEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mggroupeventextension) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md index 7aab4376ef1ef..0a571d7ddb3b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlace.md @@ -910,8 +910,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace) -- [](https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0) +- [Update-MgPlace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplace) +- [Graph API Reference](https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md index 6f405eed13ffd..d7b2c92fd14ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck) +- [Update-MgPlaceAsBuildingCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md index 603e5ee34cf69..5373b4c5851a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMap.md @@ -659,7 +659,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap) +- [Update-MgPlaceAsBuildingMap](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmap) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md index 94e3f9ab830aa..84bc7f6d2e691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapFootprint.md @@ -530,7 +530,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint) +- [Update-MgPlaceAsBuildingMapFootprint](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmapfootprint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md index 92a11f1fff9a8..bab83877bff5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevel.md @@ -697,7 +697,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel) +- [Update-MgPlaceAsBuildingMapLevel](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevel) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md index 7a6e5111b0d9e..d5cc70b89b958 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelFixture.md @@ -628,8 +628,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture) -- [](https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0) +- [Update-MgPlaceAsBuildingMapLevelFixture](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelfixture) +- [Graph API Reference](https://learn.microsoft.com/graph/api/fixturemap-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md index bb86e18980521..54626b241c4b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelSection.md @@ -594,7 +594,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection) +- [Update-MgPlaceAsBuildingMapLevelSection](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelsection) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md index 4da860a825e5d..037a2a56e5a70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsBuildingMapLevelUnit.md @@ -627,8 +627,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit) -- [](https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0) +- [Update-MgPlaceAsBuildingMapLevelUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasbuildingmaplevelunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/unitmap-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md index dab186b587c1e..7906628bd9847 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsDeskCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck) +- [Update-MgPlaceAsDeskCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasdeskcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md index 59a625616449f..21ec6e6b25fbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsFloorCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck) +- [Update-MgPlaceAsFloorCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasfloorcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md index 3fc675274448b..39f192a75e941 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck) +- [Update-MgPlaceAsRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md index 118e6b52212e7..922dc218f8810 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck) +- [Update-MgPlaceAsRoomListCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md index 1a076ae539ce1..cf10fc840316b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoom.md @@ -1160,7 +1160,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom) +- [Update-MgPlaceAsRoomListRoom](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroom) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md index 84123ed642beb..318dce7c4cca5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListRoomCheck.md @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck) +- [Update-MgPlaceAsRoomListRoomCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistroomcheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md index eef8a6cc1cabc..33897b165d6a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspace.md @@ -994,7 +994,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace) +- [Update-MgPlaceAsRoomListWorkspace](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspace) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md index a945d59dd1fb5..a83376fbcad5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsRoomListWorkspaceCheck.md @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck) +- [Update-MgPlaceAsRoomListWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasroomlistworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md index 2f528c5dcae41..de0e96b94422a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsSectionCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck) +- [Update-MgPlaceAsSectionCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceassectioncheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md index ee110715f9133..5bd19fec3c438 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceAsWorkspaceCheck.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck) +- [Update-MgPlaceAsWorkspaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplaceasworkspacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md index fc773acb47ac1..c46fca46213ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgPlaceCheck.md @@ -570,7 +570,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck) +- [Update-MgPlaceCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgplacecheck) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md index b2b84c63b9c16..8aa03510f1883 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md @@ -1176,7 +1176,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup) +- [Update-MgUserCalendarGroup](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendargroup) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md index 093051f90bcb0..0e1af18c507ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarPermission.md @@ -886,8 +886,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission) -- [](https://learn.microsoft.com/graph/api/calendarpermission-update?view=graph-rest-1.0) +- [Update-MgUserCalendarPermission](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusercalendarpermission) +- [Graph API Reference](https://learn.microsoft.com/graph/api/calendarpermission-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md index 8a75e0b1e904e..dfb1b4090e2b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEvent.md @@ -3155,7 +3155,7 @@ See below for more possible values. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent) +- [Update-MgUserEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mguserevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md index d0a09a5a5b16c..04d9ab85a562e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserEventExtension.md @@ -529,7 +529,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension) +- [Update-MgUserEventExtension](https://learn.microsoft.com/powershell/module/microsoft.graph.calendar/update-mgusereventextension)