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 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 c0304ad79ada1..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,156 +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: 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: - 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: 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: 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/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..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 @@ -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 --- @@ -27,7 +27,7 @@ Read-only. Get-MgGroupCalendar -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgGroupCalendar -GroupId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgGroupCalendarEvent -GroupId [-ExpandProperty ] [-Proper [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,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 +48,7 @@ Get-MgGroupCalendarEvent -EventId -GroupId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,7 +66,7 @@ Read-only. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Group.ReadWrite.All, Group.Read.All, Calendars.Read, | +| 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, | 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgGroupCalendarPermission -GroupId [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgGroupCalendarPermission -CalendarPermissionId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgGroupCalendarPermission -CalendarPermissionId -GroupId Get-MgGroupCalendarPermission -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgGroupCalendarPermissionCount -GroupId [-Filter ] [-Search Get-MgGroupCalendarPermissionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgGroupCalendarSchedule -GroupId [-ResponseHeadersVariable [-StartTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -40,7 +39,6 @@ Get-MgGroupCalendarSchedule -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -52,7 +50,6 @@ Get-MgGroupCalendarSchedule -InputObject [-ResponseHeadersVa [-StartTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -63,7 +60,6 @@ Get-MgGroupCalendarSchedule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Get-MgGroupCalendarView -GroupId -EndDateTime -StartDateTime < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgGroupEvent -GroupId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgGroupEvent -GroupId [-ExpandProperty ] [-Property -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +46,7 @@ Get-MgGroupEvent -EventId -GroupId [-ExpandProperty Get-MgGroupEvent -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,7 +62,7 @@ Get an event object. | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | Calendars.ReadBasic, Group.ReadWrite.All, Group.Read.All, Calendars.Read, | +| 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, | 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Get-MgGroupEventAttachment -EventId -GroupId [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgGroupEventAttachment -AttachmentId -EventId -GroupId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgGroupEventAttachment -AttachmentId -EventId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgGroupEventAttachmentCount -EventId -GroupId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Read-only. Get-MgGroupEventCalendar -EventId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgGroupEventCalendar -EventId -GroupId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgGroupEventCount -GroupId [-Filter ] [-Search ] Get-MgGroupEventCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ Get-MgGroupEventDelta -GroupId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -43,7 +42,7 @@ Get-MgGroupEventDelta -InputObject -EndDateTime -St [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,9 +61,9 @@ This allows you to maintain and synchronize a local store of events in the speci | 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, | +| 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, | ## PARAMETERS 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgGroupEventExtension -EventId -GroupId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgGroupEventExtension -EventId -ExtensionId -GroupId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgGroupEventExtensionCount -EventId -GroupId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Get-MgGroupEventInstance -EventId -GroupId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,7 @@ Get-MgGroupEventInstanceDelta -EventId -GroupId -EndDateTime < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -43,7 +43,7 @@ Get-MgGroupEventInstanceDelta -InputObject -EndDateTime ] [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsBuilding [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsBuilding [-ExpandProperty ] [-Property ] [-Filt Get-MgPlaceAsBuilding -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsBuilding -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsBuilding -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ This cmdlet has the following aliases, 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 + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuilding + +``` +This example will list all buildings defined in the tenant + + ## PARAMETERS ### -All @@ -564,8 +577,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 8a488acb27c0a..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsBuildingCheck -PlaceId [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsBuildingCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMap -PlaceId [-ExpandProperty ] [-Proper Get-MgPlaceAsBuildingMap -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +47,19 @@ This cmdlet has the following aliases, Get the map of a building in IMDF format. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMap -PlaceId $placeId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMap Cmdlet. + + ## PARAMETERS ### -Break @@ -380,6 +393,5 @@ INPUTOBJECT ``: Identity Parameter - 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsBuildingMapFootprint -PlaceId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId Get-MgPlaceAsBuildingMapFootprint -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +61,19 @@ 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: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapFootprint -PlaceId $placeId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMapFootprint Cmdlet. + + ## PARAMETERS ### -All @@ -592,8 +605,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 8374d82ae177d..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMapFootprintCount -PlaceId [-Filter ] [-Se Get-MgPlaceAsBuildingMapFootprintCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsBuildingMapLevel -PlaceId [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,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 +47,7 @@ Get-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-ExpandPro Get-MgPlaceAsBuildingMapLevel -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ 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: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevel -PlaceId $placeId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevel Cmdlet. + + ## PARAMETERS ### -All @@ -591,8 +604,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 4a54730e61a55..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMapLevelCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsBuildingMapLevelCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Get-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId Get-MgPlaceAsBuildingMapLevelFixture -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +61,19 @@ This cmdlet has the following aliases, Collection of fixtures (such as furniture or equipment) on this level. Supports upsert. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelFixture -PlaceId $placeId -LevelMapId $levelMapId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelFixture Cmdlet. + + ## PARAMETERS ### -All @@ -620,8 +632,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 914e338275fee..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMapLevelFixtureCount -LevelMapId -PlaceId Get-MgPlaceAsBuildingMapLevelFixtureCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -Sec [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -Sec Get-MgPlaceAsBuildingMapLevelSection -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +61,19 @@ This cmdlet has the following aliases, Collection of sections (such as zones or partitions) on this level. Supports upsert. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelSection -PlaceId $placeId -LevelMapId $levelMapId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelSection Cmdlet. + + ## PARAMETERS ### -All @@ -620,8 +632,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 d751b7f21480d..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMapLevelSectionCount -LevelMapId -PlaceId Get-MgPlaceAsBuildingMapLevelSectionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -UnitMa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -UnitMa Get-MgPlaceAsBuildingMapLevelUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +61,19 @@ This cmdlet has the following aliases, Collection of units (such as rooms or offices) on this level. Supports upsert. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsBuildingMapLevelUnit -PlaceId $placeId -LevelMapId $levelMapId + +``` +This example shows how to use the Get-MgPlaceAsBuildingMapLevelUnit Cmdlet. + + ## PARAMETERS ### -All @@ -620,8 +632,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 a7dae02c417b6..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsBuildingMapLevelUnitCount -LevelMapId -PlaceId [- Get-MgPlaceAsBuildingMapLevelUnitCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsDesk [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsDesk [-ExpandProperty ] [-Property ] [-Filter < Get-MgPlaceAsDesk -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsDesk -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ This cmdlet has the following aliases, 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 + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsDesk + +``` +This example will list all desks defined in the tenant + + ## PARAMETERS ### -All @@ -564,8 +577,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 db0203dadd15c..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsDeskCheck -PlaceId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsDeskCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsDeskCheckInCount -PlaceId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsFloor [-ExpandProperty ] [-Property ] [-Filter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsFloor [-ExpandProperty ] [-Property ] [-Filter Get-MgPlaceAsFloor -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsFloor -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ This cmdlet has the following aliases, 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 + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsFloor + +``` +This example will list all floors defined in the tenant + + ## PARAMETERS ### -All @@ -564,8 +577,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 a6159ce666055..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsFloorCheck -PlaceId [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsFloorCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsFloorCheckInCount -PlaceId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsRoom [-ExpandProperty ] [-Property ] [-Filter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsRoom [-ExpandProperty ] [-Property ] [-Filter < Get-MgPlaceAsRoom -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsRoom -PlaceId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsRoomCheck -PlaceId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceAsRoomCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsRoomCheckInCount -PlaceId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsRoomList [-ExpandProperty ] [-Property ] [-Filt [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsRoomList [-ExpandProperty ] [-Property ] [-Filt Get-MgPlaceAsRoomList -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsRoomList -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsRoomList -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ 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: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsRoomList -PlaceId $placeId + +``` +This example shows how to use the Get-MgPlaceAsRoomList Cmdlet. + + ## PARAMETERS ### -All @@ -565,6 +578,5 @@ 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 612172b1f7ce0..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsRoomListCheck -PlaceId [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsRoomListCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsRoomListCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsRoomListRoom -PlaceId [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,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 +46,7 @@ Get-MgPlaceAsRoomListRoom -PlaceId -RoomId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsRoomListRoomCheckInCount -PlaceId -RoomId [-Filte Get-MgPlaceAsRoomListRoomCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsRoomListRoomCount -PlaceId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId [-ExpandProperty ] [- Get-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +46,7 @@ Get-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ExpandP Get-MgPlaceAsRoomListWorkspace -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Place -WorkspaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +47,7 @@ Get-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Place Get-MgPlaceAsRoomListWorkspaceCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgPlaceAsRoomListWorkspaceCheckInCount -PlaceId -WorkspaceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgPlaceAsRoomListWorkspaceCheckInCount -PlaceId -WorkspaceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsRoomListWorkspaceCount -PlaceId [-Filter ] [-Searc Get-MgPlaceAsRoomListWorkspaceCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsSection [-ExpandProperty ] [-Property ] [-Filte [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsSection [-ExpandProperty ] [-Property ] [-Filte Get-MgPlaceAsSection -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsSection -PlaceId [-ExpandProperty ] [-Property < Get-MgPlaceAsSection -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ This cmdlet has the following aliases, 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 + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsSection + +``` +This example will list all sections defined in the tenant + + ## PARAMETERS ### -All @@ -564,8 +577,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 1fcadca223d4b..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsSectionCheck -PlaceId [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsSectionCheckInCount -PlaceId [-Filter ] [-Search < Get-MgPlaceAsSectionCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceAsWorkspace [-ExpandProperty ] [-Property ] [-Fil [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsWorkspace [-ExpandProperty ] [-Property ] [-Fil Get-MgPlaceAsWorkspace -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsWorkspace -PlaceId [-ExpandProperty ] [-Property Get-MgPlaceAsWorkspace -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +60,19 @@ This cmdlet has the following aliases, 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 + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceAsWorkspace + +``` +This example will list all workspaces defined in the tenant + + ## PARAMETERS ### -All @@ -564,8 +577,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 6364f61b098b3..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgPlaceAsWorkspaceCheck -PlaceId [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceAsWorkspaceCheckInCount -PlaceId [-Filter ] [-Search Get-MgPlaceAsWorkspaceCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgPlaceCheck -PlaceId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId Get-MgPlaceCheck -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +61,19 @@ 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: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Get-MgPlaceCheck -PlaceId $placeId -CheckInClaimCalendarEventId $checkInClaimCalendarEventId + +``` +This example shows how to use the Get-MgPlaceCheck Cmdlet. + + ## PARAMETERS ### -All @@ -592,8 +605,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 ef6f261f20298..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgPlaceCheckInCount -PlaceId [-Filter ] [-Search ] Get-MgPlaceCheckInCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsBuilding [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsDesk [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsFloor [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsRoom [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsRoomList [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsSection [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgPlaceCountAsWorkspace [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgUserCalendar -UserId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get1 @@ -39,7 +39,7 @@ Get-MgUserCalendar -UserId [-ExpandProperty ] [-Property -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +48,7 @@ Get-MgUserCalendar -CalendarId -UserId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgUserCalendarCount -UserId [-Filter ] [-Search ] Get-MgUserCalendarCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | 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, | +| 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, | ## 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 13dc3e67217a6..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgUserCalendarEvent -CalendarId -UserId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -48,9 +48,9 @@ Read-only. | 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, | +| 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, | ## PARAMETERS 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgUserCalendarGroup -UserId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,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 +48,7 @@ Get-MgUserCalendarGroup -CalendarGroupId -UserId [-ExpandPrope Get-MgUserCalendarGroup -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ Get-MgUserCalendarGroupCalendar -CalendarGroupId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ## ALIASES @@ -51,9 +50,9 @@ Nullable. | 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, | +| 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: Using the Get-MgUserCalendarGroupCalendar Cmdlet 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgUserCalendarGroupCount -UserId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | 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, | +| 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, | ## 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 7755f985522a6..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgUserCalendarPermission -UserId [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get1 @@ -38,7 +38,7 @@ Get-MgUserCalendarPermission -CalendarPermissionId -UserId -Ca [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -48,7 +48,7 @@ Get-MgUserCalendarPermission -CalendarPermissionId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List1 @@ -59,7 +59,7 @@ Get-MgUserCalendarPermission -UserId -CalendarId [-ExpandPrope [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity1 @@ -68,7 +68,7 @@ Get-MgUserCalendarPermission -UserId -CalendarId [-ExpandPrope Get-MgUserCalendarPermission -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -77,7 +77,7 @@ Get-MgUserCalendarPermission -InputObject [-ExpandProperty < Get-MgUserCalendarPermission -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,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 +44,7 @@ Get-MgUserCalendarPermissionCount -UserId -CalendarId [-Filter Get-MgUserCalendarPermissionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +53,7 @@ Get-MgUserCalendarPermissionCount -InputObject [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Get-MgUserCalendarView -UserId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### List1 @@ -43,7 +42,7 @@ Get-MgUserCalendarView -UserId -CalendarId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -61,9 +60,9 @@ Read-only. | 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, | +| 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: Using the Get-MgUserCalendarView Cmdlet 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Read-only. Get-MgUserDefaultCalendar -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgUserDefaultCalendar -UserId [-ExpandProperty ] [-Proper Get-MgUserDefaultCalendar -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgUserDefaultCalendarEvent -UserId [-ExpandProperty ] [-F [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -48,9 +48,9 @@ Read-only. | 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, | +| 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, | ## 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 717cf613781bf..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 @@ -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 --- @@ -31,7 +31,7 @@ Get-MgUserEvent -UserId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgUserEvent -UserId [-ExpandProperty ] [-Property -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgUserEvent -EventId -UserId [-ExpandProperty ] Get-MgUserEvent -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Get-MgUserEventAttachment -EventId -UserId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgUserEventAttachment -AttachmentId -EventId -UserId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgUserEventAttachment -AttachmentId -EventId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgUserEventAttachmentCount -EventId -UserId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Read-only. Get-MgUserEventCalendar -EventId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgUserEventCalendar -EventId -UserId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgUserEventCount -UserId [-Filter ] [-Search ] Get-MgUserEventCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,9 +51,9 @@ Get the number of the resource | 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, | +| 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, | ## PARAMETERS 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..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 @@ -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 --- @@ -32,7 +32,6 @@ Get-MgUserEventDelta -UserId -EndDateTime -StartDateTime ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -43,7 +42,7 @@ Get-MgUserEventDelta -InputObject -EndDateTime -Sta [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,9 +61,9 @@ This allows you to maintain and synchronize a local store of events in the speci | 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, | +| 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, | ## PARAMETERS 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgUserEventExtension -EventId -UserId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgUserEventExtension -EventId -ExtensionId -UserId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgUserEventExtension -EventId -ExtensionId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +35,7 @@ Get-MgUserEventExtensionCount -EventId -UserId [-Filter [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Get-MgUserEventInstance -EventId -UserId -EndDateTime [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,7 @@ Get-MgUserEventInstanceDelta -EventId -UserId -EndDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -43,7 +43,7 @@ Get-MgUserEventInstanceDelta -InputObject -EndDateTime ] [-Skip ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgAcceptGroupEvent -EventId -GroupId [-ResponseHeadersV [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -39,7 +38,6 @@ Invoke-MgAcceptGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgAcceptGroupEvent -InputObject [-ResponseHeadersVari [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -61,7 +58,6 @@ Invoke-MgAcceptGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgAcceptGroupEventTentatively -EventId -GroupId [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -41,7 +40,6 @@ Invoke-MgAcceptGroupEventTentatively -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgAcceptGroupEventTentatively -InputObject [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -63,7 +60,6 @@ Invoke-MgAcceptGroupEventTentatively -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgAcceptUserEvent -EventId -UserId [-ResponseHeadersVar [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -39,7 +38,6 @@ Invoke-MgAcceptUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgAcceptUserEvent -InputObject [-ResponseHeadersVaria [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -61,7 +58,6 @@ Invoke-MgAcceptUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgAcceptUserEventTentatively -EventId -UserId [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Accept @@ -41,7 +40,6 @@ Invoke-MgAcceptUserEventTentatively -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgAcceptUserEventTentatively -InputObject [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AcceptViaIdentity @@ -63,7 +60,6 @@ Invoke-MgAcceptUserEventTentatively -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Invoke-MgCalendarGroupCalendar -GroupId -User [-Count] [-Filte [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity @@ -37,7 +37,7 @@ Invoke-MgCalendarGroupCalendar -InputObject [-Count] [-Filte [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -User -UserId [-Filter ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Calendar1 @@ -37,7 +37,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -User -UserId -CalendarId [-Count] [-Filter ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity1 @@ -47,7 +47,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -InputObject ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### CalendarViaIdentity @@ -57,7 +57,7 @@ Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles -InputObject ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgDeclineGroupEvent -EventId -GroupId [-ResponseHeaders [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Decline @@ -41,7 +40,6 @@ Invoke-MgDeclineGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgDeclineGroupEvent -InputObject [-ResponseHeadersVar [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentity @@ -63,7 +60,6 @@ Invoke-MgDeclineGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgDeclineUserEvent -EventId -UserId [-ResponseHeadersVa [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Decline @@ -41,7 +40,6 @@ Invoke-MgDeclineUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgDeclineUserEvent -InputObject [-ResponseHeadersVari [-ProposedNewTime ] [-SendResponse] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeclineViaIdentity @@ -63,7 +60,6 @@ Invoke-MgDeclineUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Invoke-MgDescendantPlace -PlaceId [-Count] [-ExpandProperty ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### DescendantViaIdentity @@ -37,7 +37,7 @@ Invoke-MgDescendantPlace -InputObject [-Count] [-ExpandPrope [-Filter ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgDismissGroupEventReminder -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DismissViaIdentity @@ -37,7 +36,6 @@ Invoke-MgDismissGroupEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgDismissUserEventReminder -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DismissViaIdentity @@ -37,7 +36,6 @@ Invoke-MgDismissUserEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgForwardGroupEvent -EventId -GroupId [-ResponseHeaders [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Forward @@ -41,7 +40,6 @@ Invoke-MgForwardGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgForwardGroupEvent -InputObject [-ResponseHeadersVar [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentity @@ -63,7 +60,6 @@ Invoke-MgForwardGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgForwardUserEvent -EventId -UserId [-ResponseHeadersVa [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Forward @@ -41,7 +40,6 @@ Invoke-MgForwardUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentityExpanded @@ -52,7 +50,6 @@ Invoke-MgForwardUserEvent -InputObject [-ResponseHeadersVari [-ToRecipients ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ForwardViaIdentity @@ -63,7 +60,6 @@ Invoke-MgForwardUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgSnoozeGroupEventReminder -EventId -GroupId [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Snooze @@ -39,7 +38,6 @@ Invoke-MgSnoozeGroupEventReminder -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgSnoozeGroupEventReminder -InputObject [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentity @@ -61,7 +58,6 @@ Invoke-MgSnoozeGroupEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgSnoozeUserEventReminder -EventId -UserId [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Snooze @@ -39,7 +38,6 @@ Invoke-MgSnoozeUserEventReminder -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgSnoozeUserEventReminder -InputObject [-NewReminderTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SnoozeViaIdentity @@ -61,7 +58,6 @@ Invoke-MgSnoozeUserEventReminder -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 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..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 @@ -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 --- @@ -46,7 +46,6 @@ New-MgGroupCalendarEvent -GroupId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +55,6 @@ New-MgGroupCalendarEvent -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +83,6 @@ New-MgGroupCalendarEvent -InputObject [-ResponseHeadersVaria [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +92,6 @@ New-MgGroupCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ New-MgGroupCalendarPermission -GroupId [-ResponseHeadersVariable ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,6 @@ New-MgGroupCalendarPermission -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +48,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 +58,7 @@ New-MgGroupCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ New-MgGroupEvent -GroupId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +55,6 @@ New-MgGroupEvent -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +83,6 @@ New-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +92,6 @@ New-MgGroupEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgGroupEventAttachment -EventId -GroupId [-ResponseHeaders [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgGroupEventAttachment -EventId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +48,6 @@ New-MgGroupEventAttachment -InputObject [-ResponseHeadersVar [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +57,7 @@ New-MgGroupEventAttachment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -35,7 +35,6 @@ New-MgGroupEventAttachmentUploadSession -EventId -GroupId [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +45,6 @@ New-MgGroupEventAttachmentUploadSession -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +55,6 @@ New-MgGroupEventAttachmentUploadSession -InputObject [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +65,6 @@ New-MgGroupEventAttachmentUploadSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgGroupEventExtension -EventId -GroupId [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgGroupEventExtension -EventId -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgGroupEventExtension -InputObject [-ResponseHeadersVari [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,6 @@ New-MgGroupEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgPlace [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,7 @@ New-MgPlace [-ResponseHeadersVariable ] [-AdditionalProperties [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -60,6 +60,113 @@ You can also use this method to create the following child object types: buildin | Delegated (personal Microsoft account) | Not supported | | Application | Place.ReadWrite.All, | +## EXAMPLES +### Example 1: Create a building + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.building" + displayName = "B001" +} + +New-MgPlace -BodyParameter $params + +``` +This example will create a building + +### Example 2: Create a floor + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.floor" + displayName = "F1" + parentId = "767a31a7-6987-41c9-b829-ab351b8aab53" +} + +New-MgPlace -BodyParameter $params + +``` +This example will create a floor + +### Example 3: Create a section + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.section" + displayName = "S1" + parentId = "46ef7aed-5d94-4fd4-ae03-b333bc7a6955" +} + +New-MgPlace -BodyParameter $params + +``` +This example will create a section + +### Example 4: Create a desk + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.desk" + displayName = "D1" + parentId = "1ad0f725-6885-49c5-9a47-3b22a1f9409d" +} + +New-MgPlace -BodyParameter $params + +``` +This example will create a desk + +### Example 5: Create a room + +```powershell + +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 + +``` +This example will create a room + +### Example 6: Create a workspace + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.workspace" + parentId = "f7de7265-e420-47b4-9d49-28d728716241" + displayName = "testSpace001" + tags = @( + "test" +) +} + +New-MgPlace -BodyParameter $params + +``` +This example will create a workspace + + ## PARAMETERS ### -AdditionalProperties @@ -647,6 +754,5 @@ As an example, the accuracy can be measured in meters, such as the latitude and - 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsBuildingCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsBuildingCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsBuildingCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgPlaceAsBuildingCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ New-MgPlaceAsBuildingMapFootprint -PlaceId [-ResponseHeadersVariable ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +37,6 @@ New-MgPlaceAsBuildingMapFootprint -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +46,7 @@ New-MgPlaceAsBuildingMapFootprint -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +56,6 @@ New-MgPlaceAsBuildingMapFootprint -InputObject -BodyParamete [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgPlaceAsBuildingMapLevel -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -41,7 +40,7 @@ New-MgPlaceAsBuildingMapLevel -InputObject [-PlaceId ] [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -51,7 +50,6 @@ New-MgPlaceAsBuildingMapLevel -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +59,7 @@ New-MgPlaceAsBuildingMapLevel -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgPlaceAsBuildingMapLevelFixture -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +47,7 @@ New-MgPlaceAsBuildingMapLevelFixture -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +57,7 @@ New-MgPlaceAsBuildingMapLevelFixture -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +47,7 @@ New-MgPlaceAsBuildingMapLevelSection -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +57,7 @@ New-MgPlaceAsBuildingMapLevelSection -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +47,7 @@ New-MgPlaceAsBuildingMapLevelUnit -InputObject [-PlaceId ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +57,7 @@ New-MgPlaceAsBuildingMapLevelUnit -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsDeskCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsDeskCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsDeskCheck -InputObject [-ResponseHeadersVariabl [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,6 @@ New-MgPlaceAsDeskCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsFloorCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsFloorCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsFloorCheck -InputObject [-ResponseHeadersVariab [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgPlaceAsFloorCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsRoomCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsRoomCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsRoomCheck -InputObject [-ResponseHeadersVariabl [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,6 @@ New-MgPlaceAsRoomCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsRoomListCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsRoomListCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsRoomListCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgPlaceAsRoomListCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ New-MgPlaceAsRoomListRoom -PlaceId [-ResponseHeadersVariable ] [-Tags ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -50,7 +50,6 @@ New-MgPlaceAsRoomListRoom -InputObject [-PlaceId ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -60,7 +59,6 @@ New-MgPlaceAsRoomListRoom -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -70,7 +68,6 @@ New-MgPlaceAsRoomListRoom -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgPlaceAsRoomListRoomCheck -PlaceId -RoomId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +48,6 @@ New-MgPlaceAsRoomListRoomCheck -InputObject [-ResponseHeader [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +57,7 @@ New-MgPlaceAsRoomListRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ New-MgPlaceAsRoomListWorkspace -PlaceId [-ResponseHeadersVariable ] [-Phone ] [-PlaceId1 ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -46,7 +46,6 @@ New-MgPlaceAsRoomListWorkspace -InputObject [-PlaceId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +55,6 @@ New-MgPlaceAsRoomListWorkspace -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +64,7 @@ New-MgPlaceAsRoomListWorkspace -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgPlaceAsRoomListWorkspaceCheck -PlaceId -WorkspaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +48,6 @@ New-MgPlaceAsRoomListWorkspaceCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +57,7 @@ New-MgPlaceAsRoomListWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsSectionCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsSectionCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsSectionCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgPlaceAsSectionCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgPlaceAsWorkspaceCheck -PlaceId [-ResponseHeadersVariable [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgPlaceAsWorkspaceCheck -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgPlaceAsWorkspaceCheck -InputObject [-ResponseHeadersVa [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgPlaceAsWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgPlaceCheck -PlaceId [-ResponseHeadersVariable ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgPlaceCheck -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -50,7 +48,6 @@ New-MgPlaceCheck -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -60,7 +57,6 @@ New-MgPlaceCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +69,25 @@ 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: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "#microsoft.graph.checkInClaim" + calendarEventId = "040000008200E00074C5B7101A82E00800000000D02AC02D26EFDB010000000000000000100000005A18ADA04F0A24489AE13ED3CC367978" + checkInMethod = "verified" +} + +New-MgPlaceCheck -PlaceId $placeId -BodyParameter $params + +``` +This example shows how to use the New-MgPlaceCheck Cmdlet. + + ## PARAMETERS ### -AdditionalProperties @@ -570,6 +585,5 @@ INPUTOBJECT ``: Identity Parameter - 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..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 @@ -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 --- @@ -35,7 +35,7 @@ New-MgUserCalendar -UserId [-ResponseHeadersVariable ] [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +45,6 @@ New-MgUserCalendar -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -63,7 +62,7 @@ New-MgUserCalendar -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -73,7 +72,6 @@ New-MgUserCalendar -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ New-MgUserCalendarEvent -CalendarId -UserId [-ResponseHeadersV [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create1 @@ -56,7 +55,6 @@ New-MgUserCalendarEvent -CalendarId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded1 @@ -85,7 +83,6 @@ New-MgUserCalendarEvent -InputObject [-ResponseHeadersVariab [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity1 @@ -95,7 +92,6 @@ New-MgUserCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgUserCalendarGroup -UserId [-ResponseHeadersVariable ] [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgUserCalendarGroup -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,6 @@ New-MgUserCalendarGroup -InputObject [-ResponseHeadersVariab [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgUserCalendarGroup -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -36,7 +36,7 @@ New-MgUserCalendarGroupCalendar -CalendarGroupId -UserId [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,7 @@ New-MgUserCalendarGroupCalendar -CalendarGroupId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -64,7 +64,7 @@ New-MgUserCalendarGroupCalendar -InputObject [-ResponseHeade [-SingleValueExtendedProperties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +74,7 @@ New-MgUserCalendarGroupCalendar -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,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 +39,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 +49,7 @@ New-MgUserCalendarPermission -UserId -CalendarId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -59,7 +59,6 @@ New-MgUserCalendarPermission -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded1 @@ -70,7 +69,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 +80,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 +90,7 @@ New-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -101,7 +100,7 @@ New-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ New-MgUserDefaultCalendarEvent -UserId [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +55,6 @@ New-MgUserDefaultCalendarEvent -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +83,6 @@ New-MgUserDefaultCalendarEvent -InputObject [-ResponseHeader [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +92,7 @@ New-MgUserDefaultCalendarEvent -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ New-MgUserEvent -UserId [-ResponseHeadersVariable ] [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -56,7 +55,6 @@ New-MgUserEvent -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -85,7 +83,6 @@ New-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -95,7 +92,6 @@ New-MgUserEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgUserEventAttachment -EventId -UserId [-ResponseHeadersVa [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,7 @@ New-MgUserEventAttachment -EventId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +48,6 @@ New-MgUserEventAttachment -InputObject [-ResponseHeadersVari [-LastModifiedDateTime ] [-Name ] [-Size ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -59,7 +57,7 @@ New-MgUserEventAttachment -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -35,7 +35,6 @@ New-MgUserEventAttachmentUploadSession -EventId -UserId [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +45,6 @@ New-MgUserEventAttachmentUploadSession -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +55,6 @@ New-MgUserEventAttachmentUploadSession -InputObject [-AttachmentItem ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +65,6 @@ New-MgUserEventAttachmentUploadSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ New-MgUserEventExtension -EventId -UserId [-ResponseHeadersVar [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +36,6 @@ New-MgUserEventExtension -EventId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +45,6 @@ New-MgUserEventExtension -InputObject [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -57,7 +54,6 @@ New-MgUserEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupCalendarEvent -EventId -GroupId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupCalendarEvent -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupCalendarPermanent -GroupId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupCalendarPermanent -InputObject [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupCalendarPermission -CalendarPermissionId -GroupId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupEvent -EventId -GroupId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupEvent -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupEventAttachment -AttachmentId -EventId -GroupId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupEventAttachment -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupEventExtension -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgGroupEventPermanent -EventId -GroupId [-ResponseHeade [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgGroupEventPermanent -InputObject [-ResponseHeadersV [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgPlace -PlaceId [-IfMatch ] [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgPlace -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -59,6 +57,19 @@ You can also use this method to delete the following child object types: buildin | Delegated (personal Microsoft account) | Not supported | | Application | Place.ReadWrite.All, | +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlace -PlaceId $placeId + +``` +This example shows how to use the Remove-MgPlace Cmdlet. + + ## PARAMETERS ### -Break @@ -434,6 +445,5 @@ 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 f717c6419e366..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsBuildingCheck -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsBuildingMap -PlaceId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsBuildingMap -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +47,19 @@ This cmdlet has the following aliases, Delete the map of a specific building. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +Remove-MgPlaceAsBuildingMap -PlaceId $placeId + +``` +This example shows how to use the Remove-MgPlaceAsBuildingMap Cmdlet. + + ## PARAMETERS ### -Break @@ -424,6 +435,5 @@ 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 6cbf7a4d4d99a..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsBuildingMapFootprint -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-IfMatc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsBuildingMapLevel -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgPlaceAsBuildingMapLevelFixture -InputObject [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +48,19 @@ This cmdlet has the following aliases, Delete a fixture on a specified floor. +## EXAMPLES +### Example 1: Code snippet + +```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 @@ -467,6 +478,5 @@ 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 1f734fc43b82b..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgPlaceAsBuildingMapLevelSection -InputObject [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsBuildingMapLevelUnit -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +47,19 @@ This cmdlet has the following aliases, Delete a unitMap object. +## EXAMPLES +### Example 1: Code snippet + +```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 @@ -466,6 +477,5 @@ 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 84103f0c97423..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsDeskCheck -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsFloorCheck -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsRoomCheck -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsRoomListCheck -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsRoomListRoom -PlaceId -RoomId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsRoomListRoom -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgPlaceAsRoomListRoomCheck -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-IfMa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsRoomListWorkspace -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgPlaceAsRoomListWorkspaceCheck -InputObject [-IfMatc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsSectionCheck -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceAsWorkspaceCheck -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgPlaceCheck -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserCalendarGroup -CalendarGroupId -UserId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserCalendarGroup -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserCalendarPermanent -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete1 @@ -37,7 +36,6 @@ Remove-MgUserCalendarPermanent -UserId -CalendarId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity1 @@ -47,7 +45,6 @@ Remove-MgUserCalendarPermanent -InputObject [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -57,7 +54,6 @@ Remove-MgUserCalendarPermanent -InputObject [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserCalendarPermission -CalendarPermissionId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete1 @@ -37,7 +36,6 @@ Remove-MgUserCalendarPermission -CalendarPermissionId -UserId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity1 @@ -47,7 +45,6 @@ Remove-MgUserCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -57,7 +54,6 @@ Remove-MgUserCalendarPermission -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserEvent -EventId -UserId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserEvent -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserEventAttachment -AttachmentId -EventId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserEventAttachment -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserEventExtension -EventId -ExtensionId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserEventExtension -InputObject [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgUserEventPermanent -EventId -UserId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserEventPermanent -InputObject [-ResponseHeadersVa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Stop-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariable [-AdditionalProperties ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +41,6 @@ Stop-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +50,6 @@ Stop-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -63,7 +60,6 @@ Stop-MgGroupEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Stop-MgUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +41,6 @@ Stop-MgUserEvent -EventId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +50,6 @@ Stop-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-Comment ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -63,7 +60,6 @@ Stop-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ Update-MgGroupCalendarEvent -EventId -GroupId [-ResponseHeader [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +55,7 @@ Update-MgGroupCalendarEvent -EventId -GroupId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -85,7 +84,6 @@ Update-MgGroupCalendarEvent -InputObject [-ResponseHeadersVa [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +93,6 @@ Update-MgGroupCalendarEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgGroupCalendarPermission -CalendarPermissionId -GroupId ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgGroupCalendarPermission -CalendarPermissionId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,7 @@ Update-MgGroupCalendarPermission -InputObject [-EmailAddress ] [-Id ] [-IsInsideOrganization] [-IsRemovable] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +59,7 @@ Update-MgGroupCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ Update-MgGroupEvent -EventId -GroupId [-ResponseHeadersVariabl [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +55,6 @@ Update-MgGroupEvent -EventId -GroupId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -85,7 +83,6 @@ Update-MgGroupEvent -InputObject [-ResponseHeadersVariable < [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +92,6 @@ Update-MgGroupEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Update-MgGroupEventExtension -EventId -ExtensionId -GroupId ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +37,6 @@ Update-MgGroupEventExtension -EventId -ExtensionId -GroupId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +46,6 @@ Update-MgGroupEventExtension -InputObject [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -57,7 +55,6 @@ Update-MgGroupEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgPlace -PlaceId [-ResponseHeadersVariable ] [-Label ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgPlace -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +53,7 @@ Update-MgPlace -InputObject [-ResponseHeadersVariable ] [-ParentId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +63,6 @@ Update-MgPlace -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -92,6 +90,75 @@ You can identify the place by specifying the id property. Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.building" + tags = @( + "most popular building" +) +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 2: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.floor" + isWheelChairAccessible = $true + sortOrder = +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 3: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.section" + label = "discuss area" +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 4: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + +$params = @{ + "@odata.type" = "microsoft.graph.desk" + mode = @{ + "@odata.type" = "microsoft.graph.dropInPlaceMode" + } +} + +Update-MgPlace -PlaceId $placeId -BodyParameter $params + +``` +This example shows how to use the Update-MgPlace Cmdlet. + +### Example 5: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Calendar + $params = @{ "@odata.type" = "microsoft.graph.room" nickname = "Conf Room" @@ -106,6 +173,26 @@ Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` This example shows how to use the Update-MgPlace Cmdlet. +### Example 6: Code snippet + +```powershell + +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 + +``` +This example shows how to use the Update-MgPlace Cmdlet. + ## PARAMETERS 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsBuildingCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsBuildingCheck -InputObject [-ResponseHeaders [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsBuildingCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgPlaceAsBuildingMap -PlaceId [-ResponseHeadersVariable [-Levels ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -39,7 +39,7 @@ Update-MgPlaceAsBuildingMap -InputObject [-PlaceId ] [-Footprints ] [-Id ] [-Levels ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -49,7 +49,6 @@ Update-MgPlaceAsBuildingMap -PlaceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +58,7 @@ Update-MgPlaceAsBuildingMap -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Update-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +37,6 @@ Update-MgPlaceAsBuildingMapFootprint -FootprintMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +46,7 @@ Update-MgPlaceAsBuildingMapFootprint -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +56,6 @@ Update-MgPlaceAsBuildingMapFootprint -InputObject -BodyParam [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Update-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,7 @@ Update-MgPlaceAsBuildingMapLevel -LevelMapId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgPlaceAsBuildingMapLevel -InputObject [-PlaceId ] [-Units ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgPlaceAsBuildingMapLevel -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -FixtureMapId -LevelMapId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +47,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -InputObject [-Place [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +57,7 @@ Update-MgPlaceAsBuildingMapLevelFixture -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +69,40 @@ 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 + +```powershell + +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 + +``` +This example will update an existing fixturemap + +### Example 2: Create a fixtureMap if it doesn't exist + +```powershell + +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 + +``` +This example will create a fixturemap if it doesn't exist + + ## PARAMETERS ### -AdditionalProperties @@ -617,6 +650,5 @@ INPUTOBJECT ``: Identity Parameter - 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-Id ] [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,6 @@ Update-MgPlaceAsBuildingMapLevelSection -LevelMapId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +47,7 @@ Update-MgPlaceAsBuildingMapLevelSection -InputObject [-Place [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsBuildingMapLevelSection -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni [-PlaceId1 ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -LevelMapId -PlaceId -Uni -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -48,7 +47,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -InputObject [-PlaceId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Properties ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -58,7 +57,7 @@ Update-MgPlaceAsBuildingMapLevelUnit -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -70,6 +69,39 @@ 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 + +```powershell + +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 + +``` +This example will update an existing unitmap + +### Example 2: Create a unitMap if it doesn't exist + +```powershell + +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 + +``` +This example will create a unitmap if it doesn't exist + + ## PARAMETERS ### -AdditionalProperties @@ -617,6 +649,5 @@ 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 45fcb5c1c3d62..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsDeskCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsDeskCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsDeskCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsFloorCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsFloorCheck -InputObject [-ResponseHeadersVar [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsFloorCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsRoomCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsRoomCheck -InputObject [-ResponseHeadersVari [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsRoomListCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsRoomListCheck -InputObject [-ResponseHeaders [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsRoomListCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Update-MgPlaceAsRoomListRoom -PlaceId -RoomId [-ResponseHeader [-Tags ] [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -50,7 +50,6 @@ Update-MgPlaceAsRoomListRoom -InputObject [-PlaceId [-TeamsEnabledState ] [-VideoDeviceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -60,7 +59,6 @@ Update-MgPlaceAsRoomListRoom -PlaceId -RoomId -BodyParameter < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -70,7 +68,6 @@ Update-MgPlaceAsRoomListRoom -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId [-CalendarEventId ] [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgPlaceAsRoomListRoomCheck -CheckInClaimCalendarEventId -PlaceId -RoomId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,6 @@ Update-MgPlaceAsRoomListRoomCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +58,7 @@ Update-MgPlaceAsRoomListRoomCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,7 @@ Update-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId [-ParentId ] [-Phone ] [-PlaceId1 ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -47,7 +47,6 @@ Update-MgPlaceAsRoomListWorkspace -InputObject [-PlaceId ] [-Phone ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -57,7 +56,7 @@ Update-MgPlaceAsRoomListWorkspace -PlaceId -WorkspaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +66,7 @@ Update-MgPlaceAsRoomListWorkspace -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-CalendarEventId ] [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,6 @@ Update-MgPlaceAsRoomListWorkspaceCheck -CheckInClaimCalendarEventId -Pl [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +49,6 @@ Update-MgPlaceAsRoomListWorkspaceCheck -InputObject [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -60,7 +58,7 @@ Update-MgPlaceAsRoomListWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsSectionCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsSectionCheck -InputObject [-ResponseHeadersV [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsSectionCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceAsWorkspaceCheck -CheckInClaimCalendarEventId -PlaceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceAsWorkspaceCheck -InputObject [-ResponseHeader [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgPlaceAsWorkspaceCheck -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId [-CheckInMethod ] [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgPlaceCheck -CheckInClaimCalendarEventId -PlaceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgPlaceCheck -InputObject [-ResponseHeadersVariable < [-CreatedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,6 @@ Update-MgPlaceCheck -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,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 +38,7 @@ Update-MgUserCalendarGroup -CalendarGroupId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,6 @@ Update-MgUserCalendarGroup -InputObject [-ResponseHeadersVar [-ClassId ] [-Id ] [-Name ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +58,7 @@ Update-MgUserCalendarGroup -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,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 +39,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 +49,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +59,7 @@ Update-MgUserCalendarPermission -CalendarPermissionId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded1 @@ -70,7 +70,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 +81,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 +91,7 @@ Update-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -101,7 +101,7 @@ Update-MgUserCalendarPermission -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -46,7 +46,6 @@ Update-MgUserEvent -EventId -UserId [-ResponseHeadersVariable [-Type ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -56,7 +55,6 @@ Update-MgUserEvent -EventId -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -85,7 +83,6 @@ Update-MgUserEvent -InputObject [-ResponseHeadersVariable ] [-WebLink ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -95,7 +92,6 @@ Update-MgUserEvent -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Update-MgUserEventExtension -EventId -ExtensionId -UserId ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +37,6 @@ Update-MgUserEventExtension -EventId -ExtensionId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +46,6 @@ Update-MgUserEventExtension -InputObject [-ResponseHeadersVa [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -57,7 +55,6 @@ Update-MgUserEventExtension -InputObject -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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 7f2d4079ff9da..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 "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" + $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 52498f065e01d..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 = @{} @@ -13,36 +22,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()] @@ -57,7 +36,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") { @@ -65,7 +44,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 } @@ -81,55 +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 - - 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" - if ($graphProfile -eq "beta") { - $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" + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) + } - # 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)" - } + # 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" + } + + # 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 } - 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 . - 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 { @@ -145,10 +124,14 @@ function Get-FolderByProfile { ) $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 - + # 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 = $_ Write-Host $ModuleName @@ -160,107 +143,102 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # 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). + $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) { + 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 + } + 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 + # 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 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" - } - } - } elseif (-not (Test-Path $CmdletDocsPath)) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { 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) { - 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 - } + # 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 } - # 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 + if($CmdletCount -eq 0){ + Remove-Item -LiteralPath $Destination -Force -Recurse } - } - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force @@ -280,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 aeca973f7f228..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 $_"; @@ -136,7 +147,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/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 37be47e7c73df..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 "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" + $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 f7edf3e93bcd6..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" @@ -175,7 +179,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 @@ -201,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